#ifndef ACTION_BASE_H #define ACTION_BASE_H class Action_base{ public: virtual void perform() = 0; }; #endif