voxelTerrain
 All Classes Functions Variables Typedefs Enumerations Pages
identifier.hpp
1 #ifndef NETWORK_SYNC_IDENTIFIER_HPP
2 #define NETWORK_SYNC_IDENTIFIER_HPP
3 
4 #include "blub/core/enableSharedFromThis.hpp"
5 #include "blub/core/sharedPointer.hpp"
6 
7 
8 namespace blub {
9 namespace sync {
10 
11 
12 class identifier : public enableSharedFromThis<identifier>
13 {
14 public:
16 
17  static pointer create()
18  {
19  return pointer(new identifier());
20  }
21  virtual ~identifier() {;}
22 
23 protected:
24  identifier()
25  {;}
26 
27 };
28 
29 
30 }
31 }
32 
33 #endif // NETWORK_SYNC_IDENTIFIER_HPP
Definition: identifier.hpp:12
Definition: sharedPointer.hpp:12
Definition: enableSharedFromThis.hpp:14
Definition: deadlineTimer.hpp:10