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 @@ public:
|
||||
MeasureDiskSpace(MeterWindow* meterWindow, const WCHAR* name);
|
||||
virtual ~MeasureDiskSpace();
|
||||
|
||||
MeasureDiskSpace(const MeasureDiskSpace& other) = delete;
|
||||
MeasureDiskSpace& operator=(MeasureDiskSpace other) = delete;
|
||||
|
||||
virtual UINT GetTypeID() { return TypeID<MeasureDiskSpace>(); }
|
||||
|
||||
virtual const WCHAR* GetStringValue();
|
||||
|
Reference in New Issue
Block a user