yasmine
simple_state.hpp
Go to the documentation of this file.
1 // //
3 // This file is part of the Seadex yasmine ecosystem (http://yasmine.seadex.de). //
4 // Copyright (C) 2016-2017 Seadex GmbH //
5 // //
6 // Licensing information is available in the folder "license" which is part of this distribution. //
7 // The same information is available on the www @ http://yasmine.seadex.de/Licenses.html. //
8 // //
10 
11 
12 #ifndef SIMPLE_STATE_FE75D8CB_F61A_4291_94EC_206E43F291AA
13 #define SIMPLE_STATE_FE75D8CB_F61A_4291_94EC_206E43F291AA
14 
15 
16 #include "complex_state.hpp"
17 
18 
19 namespace sxy
20 {
21 
22 
24  public virtual complex_state
25 {
26 public:
28  {
29  // Nothing to do...
30  }
31 
32 
33  virtual ~simple_state() SX_NOEXCEPT SX_OVERRIDE
34  {
35  // Nothing to do...
36  }
37 
38 
39  SX_NO_COPY(simple_state)
40 };
41 
42 
43 }
44 
45 
46 #endif
Definition: complex_state.hpp:26
virtual ~simple_state() SX_NOEXCEPT SX_OVERRIDE
Definition: simple_state.hpp:33
Definition: adapter_cpp11.hpp:21
simple_state()
Definition: simple_state.hpp:27
Definition: simple_state.hpp:23