yasmine
final_state_model.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 #ifndef FINAL_STATE_MODEL_418502AE_CCF1_4713_90D0_2335AF26A3B7
12 #define FINAL_STATE_MODEL_418502AE_CCF1_4713_90D0_2335AF26A3B7
13 
14 
15 #include "state_model.hpp"
17 
18 
19 namespace sxy
20 {
21 
22 
23 namespace model
24 {
25 
26 
27 
31  public virtual state_model
32 {
33 
34 
35 public:
37  {
38  // Nothing to do...
39  }
40 
41 
42  virtual ~final_state_model() SX_NOEXCEPT SX_OVERRIDE
43  {
44  // Nothing to do...
45  }
46 
47 
48  SX_NO_COPY( final_state_model )
49 };
50 
51 
52 }
53 
54 
55 }
56 
57 
58 #endif
Definition: algorithm_parameters.hpp:16
virtual ~final_state_model() SX_NOEXCEPT SX_OVERRIDE
Definition: final_state_model.hpp:42
Interface for a state in the model.
Definition: state_model.hpp:34
final_state_model()
Definition: final_state_model.hpp:36
Interface for a final state in the model.
Definition: final_state_model.hpp:30