mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Disable copy constructors and copy assignment operators
This commit is contained in:
@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user