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:
@ -42,6 +42,9 @@ public:
|
||||
ConfigParser();
|
||||
~ConfigParser();
|
||||
|
||||
ConfigParser(const ConfigParser& other) = delete;
|
||||
ConfigParser& operator=(ConfigParser other) = delete;
|
||||
|
||||
void Initialize(const std::wstring& filename, MeterWindow* meterWindow = nullptr, LPCTSTR skinSection = nullptr, const std::wstring* resourcePath = nullptr);
|
||||
|
||||
void AddMeasure(Measure* pMeasure);
|
||||
|
Reference in New Issue
Block a user