diff --git a/include/hyprgraphics/image/Image.hpp b/include/hyprgraphics/image/Image.hpp index 5cf0a1c..3925b7c 100644 --- a/include/hyprgraphics/image/Image.hpp +++ b/include/hyprgraphics/image/Image.hpp @@ -12,6 +12,10 @@ namespace Hyprgraphics { CImage(const std::string& path); ~CImage(); + CImage(const CImage&) = delete; + CImage& operator=(const CImage&) = delete; + + // bool success(); bool hasAlpha(); std::string getError();