X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FMoof%2FEngine.hh;h=971d68fe1e28eb59e3536056dd19c4355ec0668c;hb=4701bf580b75a7d77a460c6f14f9fc31fb109bbb;hp=2d7dfd6aa77b9ee56ebb591f7e7954c15b69875a;hpb=16d1a05b0777e97a45c48e2874aa4e5cc791282e;p=chaz%2Fyoink diff --git a/src/Moof/Engine.hh b/src/Moof/Engine.hh index 2d7dfd6..971d68f 100644 --- a/src/Moof/Engine.hh +++ b/src/Moof/Engine.hh @@ -53,7 +53,7 @@ public: virtual ~Engine(); int run(); - void stop(); + void stop(int exitCode = 0); void setTimestep(Scalar ts); Scalar getTimestep(); @@ -75,8 +75,8 @@ public: }; private: - class EngineImpl; - boost::shared_ptr impl_; + class Impl; + boost::shared_ptr impl_; };