Disable copy constructors and copy assignment operators

This commit is contained in:
Birunthan Mohanathas
2014-01-05 12:07:22 +02:00
parent 4b6a1d31ea
commit 7164dddefd
54 changed files with 157 additions and 18 deletions

View File

@ -29,6 +29,9 @@ public:
MeterString(MeterWindow* meterWindow, const WCHAR* name);
virtual ~MeterString();
MeterString(const MeterString& other) = delete;
MeterString& operator=(MeterString other) = delete;
virtual UINT GetTypeID() { return TypeID<MeterString>(); }
virtual int GetX(bool abs = false);