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

@ -53,6 +53,9 @@ protected:
MeasureNet(MeterWindow* meterWindow, const WCHAR* name, NET type);
virtual ~MeasureNet();
MeasureNet(const MeasureNet& other) = delete;
MeasureNet& operator=(MeasureNet other) = delete;
virtual void ReadOptions(ConfigParser& parser, const WCHAR* section);
virtual void UpdateValue();