yasmine
exit_point_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 EXIT_POINT_MODEL_DE3EF1F0_F25E_4350_A872_1D9C37669EF0
12 #define EXIT_POINT_MODEL_DE3EF1F0_F25E_4350_A872_1D9C37669EF0
13 
14 
15 #include "pseudostate_model.hpp"
16 #include "exit_point_model_fwd.hpp"
17 
18 
19 namespace sxy
20 {
21 
22 
23 namespace model
24 {
25 
26 
29 class exit_point_model: public virtual pseudostate_model
30 {
31 public:
33  {
34  // Nothing to do...
35  }
36 
37 
38  virtual ~exit_point_model() SX_NOEXCEPT SX_OVERRIDE
39  {
40  // Nothing to do...
41  }
42 
43 
44  SX_NO_COPY( exit_point_model )
45 };
46 
47 
48 }
49 
50 
51 }
52 
53 
54 #endif
Interface for an exit point pseudostate in the model.
Definition: exit_point_model.hpp:29
Definition: algorithm_parameters.hpp:16
virtual ~exit_point_model() SX_NOEXCEPT SX_OVERRIDE
Definition: exit_point_model.hpp:38
exit_point_model()
Definition: exit_point_model.hpp:32
Interface for a pseudostate in the model.
Definition: pseudostate_model.hpp:33