#ifndef PROGRAMBLOCK_H #define PROGRAMBLOCK_H #include "MemBlock.imp.h" class ProgramBlock: public MemBlock { public: // Constructor ProgramBlock(int new_id, int new_size); }; #endif