X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FAnimation.hh;h=97e916d8b5f3a77ae502cd50c878b79733020355;hb=af88821a172c4dfd138b91b2a5148ae50b502fa2;hp=ba3860113ba180a69f5c0ae276bf455879958199;hpb=831f04d4bc19a390415ac0bbac4331c7a65509bc;p=chaz%2Fyoink diff --git a/src/Animation.hh b/src/Animation.hh index ba38601..97e916d 100644 --- a/src/Animation.hh +++ b/src/Animation.hh @@ -22,7 +22,6 @@ #include #include -#include class Animation; @@ -36,11 +35,8 @@ typedef boost::shared_ptr AnimationP; * about anything to whatever drawing context is used to render the frame. */ -class Animation : public moof::resource +class Animation { - class impl; - boost::shared_ptr impl_; - public: Animation(const std::string& name); @@ -56,7 +52,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_; };