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:
@ -115,6 +115,9 @@ public:
|
||||
MeterWindow(const std::wstring& folderPath, const std::wstring& file);
|
||||
~MeterWindow();
|
||||
|
||||
MeterWindow(const MeterWindow& other) = delete;
|
||||
MeterWindow& operator=(MeterWindow other) = delete;
|
||||
|
||||
void Initialize();
|
||||
|
||||
void DoBang(Bang bang, const std::vector<std::wstring>& args);
|
||||
|
Reference in New Issue
Block a user