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:
@ -73,6 +73,9 @@ public:
|
||||
TintedImage(const WCHAR* name = L"ImageName", const WCHAR** optionArray = c_DefaultOptionArray, bool disableTransform = false, MeterWindow* meterWindow = nullptr);
|
||||
~TintedImage();
|
||||
|
||||
TintedImage(const TintedImage& other) = delete;
|
||||
TintedImage& operator=(TintedImage other) = delete;
|
||||
|
||||
void ReadOptions(ConfigParser& parser, const WCHAR* section, const WCHAR* imagePath = L"");
|
||||
|
||||
bool IsLoaded() { return (m_Bitmap != nullptr); }
|
||||
|
Reference in New Issue
Block a user