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:
@ -82,7 +82,9 @@ private:
|
||||
|
||||
CanvasD2D();
|
||||
~CanvasD2D();
|
||||
CanvasD2D(const CanvasD2D& other) {}
|
||||
|
||||
CanvasD2D(const CanvasD2D& other) = delete;
|
||||
CanvasD2D& operator=(CanvasD2D other) = delete;
|
||||
|
||||
bool BeginTargetDraw();
|
||||
void EndTargetDraw();
|
||||
|
Reference in New Issue
Block a user