#include "prog.h" // Constructor Prog::Prog(std::string executablePath) { asset = new Asset(executablePath); } Prog::~Prog() { delete asset; }