1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#ifndef BLOCK_H #define BLOCK_H #include "pixmapitem.h" #include <map> #include "constants.h" class Block : public PixmapItem { public: Block(Color color, QGraphicsItem *parent=0); private: // map for saving QPixmaps for reuse static std::map<Color, QPixmap> m_pixmaps; }; #endif // BLOCK_H