X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FEngine.hh;fp=src%2FMoof%2FEngine.hh;h=e42510d3d86af61744bab076f2186249e1e91e26;hp=e49f44db853cbf30ca59539a5ab6f04bac64a1be;hb=a31d65a998121df0651c57bfb68782e2a07d2e2f;hpb=31d52677b38d935297d132bdbd956c655cd3feee 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_; };