18 lines
255 B
C++
18 lines
255 B
C++
#ifndef Problem1_h
|
|
#define Problem1_h
|
|
|
|
#include "ProblemBase.hpp"
|
|
|
|
class Problem1 : public ProblemBase {
|
|
|
|
private:
|
|
unsigned long factor3 = 0;
|
|
unsigned long factor5 = 0;
|
|
unsigned long factor5_tick = 0;
|
|
|
|
public:
|
|
Problem1();
|
|
bool Step();
|
|
};
|
|
|
|
#endif |