X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FAnimation.hh;h=3875b45f4819dccb880d4df763fbd676a8f4a708;hp=ba3860113ba180a69f5c0ae276bf455879958199;hb=6b0a0d0efafe34d48ab344fca3b479553bd4e62c;hpb=85783316365181491a3e3c0c63659972477cebba 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_; };