#ifndef ProblemBase_h #define ProblemBase_h class ProblemBase { public: unsigned long output; protected: unsigned long input; public: virtual bool Step(); }; #endif