UGDK  0.5.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
uncopyable.h
Go to the documentation of this file.
1 
2 #ifndef UGDK_UTIL_UNCOPIABLE_H_
3 #define UGDK_UTIL_UNCOPIABLE_H_
4 
5 namespace ugdk {
6 namespace util {
7 
8 class Uncopyable {
9  protected:
12  private:
13  Uncopyable(const Uncopyable&);
14  Uncopyable& operator=(const Uncopyable&);
15 };
16 
17 } /* namespace util */
18 } /* namespace ugdk */
19 
20 #endif /* UGDK_UTIL_UNCOPIABLE_H_ */
Uncopyable()
Definition: uncopyable.h:10
Definition: animation.h:11
~Uncopyable()
Definition: uncopyable.h:11
Definition: uncopyable.h:8