yasmine
fork.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 FORK_AE64610F_E053_4011_9005_1CB9698FDE30
13 #define FORK_AE64610F_E053_4011_9005_1CB9698FDE30
14 
15 
16 #include "region_pseudostate.hpp"
17 #include "fork_fwd.hpp"
18 
19 
20 namespace sxy
21 {
22 
23 
24 class fork:
25  public virtual region_pseudostate
26 {
27 public:
28  fork()
29  {
30  // Nothing to do...
31  }
32 
33 
34  virtual ~fork() SX_NOEXCEPT SX_OVERRIDE
35  {
36  // Nothing to do...
37  }
38 
39 
40  SX_NO_COPY(fork)
41 };
42 
43 
44 }
45 
46 
47 #endif
fork()
Definition: fork.hpp:28
Definition: region_pseudostate.hpp:23
Definition: fork.hpp:24
Definition: adapter_cpp11.hpp:21
virtual ~fork() SX_NOEXCEPT SX_OVERRIDE
Definition: fork.hpp:34