FaceGen 3 SDKs Reference
Loading...
Searching...
No Matches
NonCopyable.hpp
1//
2// Copyright (c) Singular Inversions Inc. 2012
3//
4// Authors:Sohail Somani
5
6#ifndef FR2_NONCOPYABLE_HPP
7#define FR2_NONCOPYABLE_HPP
8
9namespace Fg {
10
17{
18protected:
19 NonCopyable(){}
20 ~NonCopyable(){}
21private:
22 NonCopyable(NonCopyable const &);
23 NonCopyable& operator=(NonCopyable const &);
24};
25
26}
27
28#endif