#ifndef BLOCK_H #define BLOCK_H #include typedef uint16_t BlockId; class Block { public: Block(BlockId id); BlockId getId() const; private: const BlockId id; }; #endif