SimulationState.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <ivorium.hpp>
4 
5 namespace comp
6 {
7 
12 {
13 public:
14  enum State
15  {
20  };
21 
22 public:
24  SimulationState( iv::Instance * inst );
26 
27  // write
31 
32  // read
34 
35  //
37 };
38 
39 }
40 
41 //------------------- StringIO --------------------
42 namespace iv
43 {
44 template<>
45 struct StringIO< comp::SimulationState::State > : public StringIO_Table< comp::SimulationState::State >
46 {
47  static const ValuesType Values;
48 };
49 }