X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FMoof%2FEngine.hh;h=e42510d3d86af61744bab076f2186249e1e91e26;hb=bffc879fc8ee8167bb123310d39fad4e2f426ffd;hp=e49f44db853cbf30ca59539a5ab6f04bac64a1be;hpb=a4debfe4a5f5d339410788971b698ba00cb7f09c;p=chaz%2Fyoink diff --git a/src/Moof/Engine.hh b/src/Moof/Engine.hh index e49f44d..e42510d 100644 --- a/src/Moof/Engine.hh +++ b/src/Moof/Engine.hh @@ -42,8 +42,13 @@ namespace Mf { // forward declarations class Video; -struct Engine +class Engine { + class Impl; + boost::shared_ptr mImpl; + +public: + Engine(int argc, char* argv[], const std::string& name, const std::string& iconFile, const std::string& configFile); ~Engine() {} @@ -77,10 +82,6 @@ struct Engine throw *this; } }; - -private: - class Impl; - boost::shared_ptr impl_; };