#ifndef BLOCK_H #define BLOCK_H #include "pixmapitem.h" #include #include "constants.h" class Block : public PixmapItem { public: Block(Color color); private: // map for saving QPixmaps for reuse static std::map m_pixmaps; }; #endif // BLOCK_H