18 lines
200 B
C++
18 lines
200 B
C++
#ifndef ENGINE_H
|
|
#define ENGINE_H
|
|
|
|
class Engine
|
|
{
|
|
public:
|
|
Engine();
|
|
virtual ~Engine();
|
|
|
|
//!Iterate a number of timesteps
|
|
bool IterateTS(unsigned int numTS);
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
#endif // ENGINE_H
|