mirror of
https://github.com/loot/yaml-cpp.git
synced 2026-07-27 14:13:42 -07:00
17 lines
262 B
C++
17 lines
262 B
C++
#pragma once
|
|
|
|
namespace YAML
|
|
{
|
|
// this is basically boost::noncopyable
|
|
class noncopyable
|
|
{
|
|
protected:
|
|
noncopyable() {}
|
|
~noncopyable() {}
|
|
|
|
private:
|
|
noncopyable(const noncopyable&);
|
|
const noncopyable& operator = (const noncopyable&);
|
|
};
|
|
}
|