Ray Tracer  2020
NonCopyable.h
Go to the documentation of this file.
1 #pragma once
2 
3 #ifndef NON_COPYABLE_H_INCLUDED
4 #define NON_COPYABLE_H_INCLUDED
5 
27 class NonCopyable {
28 protected:
29 
32 
35 
36 
37 private:
38 
45 
54 
55 };
56 
57 #endif
NonCopyable class.
Definition: NonCopyable.h:27
NonCopyable & operator=(const NonCopyable &)
NonCopyable assignment operator.
~NonCopyable()
NonCopyable destructor.
Definition: NonCopyable.h:34
NonCopyable()
NonCopyable default constructor.
Definition: NonCopyable.h:31
NonCopyable(const NonCopyable &)
NonCopyable copy constructor.