aboutsummaryrefslogtreecommitdiffstats
path: root/entityx/help/NonCopyable.h
blob: 5f193ee4a749e1a557efe1ccc2883347b289fbfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//  Inspired heavily by boost::noncopyable

#pragma once

namespace entityx {
namespace help {

class NonCopyable
{
 protected:

  NonCopyable() = default;
  ~NonCopyable() = default;


  NonCopyable( const NonCopyable& ) = delete;
  NonCopyable& operator=( const NonCopyable& ) = delete;

};


} // namespace help
} // namespace entityx