updated graphical_simulation.hh - Djina

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@440 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-02-24 14:25:48 +00:00
parent 5034c59728
commit ed389f8b37
1 changed files with 9 additions and 3 deletions

View File

@ -39,12 +39,18 @@ namespace sgpem {
class GraphicalSimulation; class GraphicalSimulation;
/** \brief Concrete \ref Simulation subclass with a GUI. /** \brief Concrete \ref Simulation subclass with a GUI.
The GraphicalSimulation class is only a placeholder for the future baselines. The GraphicalSimulation class is only a placeholder for the future baselines.
*/ */
class GraphicalTerminalIO : public IOManager, public Gtk::Window class GraphicalSimulation : public Simulation
{ {
public:
GraphicalSimulation();
/**
Visualize the state of the simulation in a graphic mode
*/
void update();
}; };