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:
@ -27,6 +27,9 @@ class __declspec(novtable) Group
|
||||
public:
|
||||
virtual ~Group() {}
|
||||
|
||||
Group(const Group& other) = delete;
|
||||
Group& operator=(Group other) = delete;
|
||||
|
||||
bool BelongsToGroup(const std::wstring& group) const;
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user