#ifndef PROGRAMBLOCK_IMP_H #define PROGRAMBLOCK_IMP_H #include "ProgramBlock.h" ProgramBlock::ProgramBlock(int new_id, int new_size) : MemBlock(new_size){ this->setId(new_id); } #endif