#ifndef MAIN_CPP #error This file may only be included from main.cpp #endif #include #include #include "CToolBase.hpp" class CToolPackage : public CToolBase { public: CToolPackage(const std::vector& args) : CToolBase(args) { } ~CToolPackage() { } };