bug fixes, added background image
[winnie] / src / pixmap.h
index 02a848b..aebec70 100644 (file)
@@ -4,12 +4,15 @@
 #include "geom.h"
 
 class Pixmap {
-private:
+public:
        int width, height;
        unsigned char *pixels;
 
-public:
        Pixmap();
+
+       Pixmap(const Pixmap &pixmap);
+       Pixmap &operator=(const Pixmap& pixmap);
+
        ~Pixmap();
 
        int get_width() const;