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