X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FAnimation.hh;h=3875b45f4819dccb880d4df763fbd676a8f4a708;hp=ba3860113ba180a69f5c0ae276bf455879958199;hb=e0fb747f2e647115d0b8953615c254d25c045345;hpb=831f04d4bc19a390415ac0bbac4331c7a65509bc diff --git a/src/Animation.hh b/src/Animation.hh index ba38601..3875b45 100644 --- a/src/Animation.hh +++ b/src/Animation.hh @@ -38,9 +38,6 @@ typedef boost::shared_ptr AnimationP; class Animation : public moof::resource { - class impl; - boost::shared_ptr impl_; - public: Animation(const std::string& name); @@ -56,7 +53,11 @@ public: void update(moof::scalar t, moof::scalar dt); unsigned getFrame() const; - static bool find_path(std::string& name); + +private: + + class impl; + boost::shared_ptr impl_; };