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:
@ -58,6 +58,8 @@ class __declspec(novtable) Measure : public Section
|
||||
public:
|
||||
virtual ~Measure();
|
||||
|
||||
Measure(const Measure& other) = delete;
|
||||
|
||||
void ReadOptions(ConfigParser& parser) { ReadOptions(parser, GetName()); }
|
||||
|
||||
virtual void Initialize();
|
||||
|
Reference in New Issue
Block a user