Files
Project-Euler/ProblemBase.hpp

16 lines
175 B
C++

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