scide: implement selectionLength for openDocument
[supercollider.git] / external_libraries / yaml-cpp-0.3.0 / include / yaml-cpp / noncopyable.h
blob8e61e4338f8a730ffa3234e8c3c6dcfc78338d5d
1 #ifndef NONCOPYABLE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
2 #define NONCOPYABLE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
4 #if defined(_MSC_VER) || (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4
5 #pragma once
6 #endif
8 #include "yaml-cpp/dll.h"
10 namespace YAML
12 // this is basically boost::noncopyable
13 class YAML_CPP_API noncopyable
15 protected:
16 noncopyable() {}
17 ~noncopyable() {}
19 private:
20 noncopyable(const noncopyable&);
21 const noncopyable& operator = (const noncopyable&);
25 #endif // NONCOPYABLE_H_62B23520_7C8E_11DE_8A39_0800200C9A66