Guest User

Untitled

a guest
Feb 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #ifndef PROB_1_h
  2. #define PROB_1_h
  3.  
  4. #include <iostream>
  5. #include "ProjectEulerWrapper.h"
  6.  
  7. namespace P1
  8. {
  9.     class prob_1 : public PE::ProjectEulerWrapper
  10.     {
  11.     public:
  12.         void runProblem();
  13.        
  14.     private:
  15.         static PE::EulerProblem<prob_1> reg;
  16.        
  17.     };
  18. }
  19.  
  20. #endif
Add Comment
Please, Sign In to add comment