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