X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FEngine.hh;h=971d68fe1e28eb59e3536056dd19c4355ec0668c;hp=2d7dfd6aa77b9ee56ebb591f7e7954c15b69875a;hb=bfa6212d09d8735d8fd5e2638188e4a99f21ada4;hpb=16d1a05b0777e97a45c48e2874aa4e5cc791282e 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_; };