You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mainclass.hh 222B

123456789101112131415
  1. #ifndef MAINCLASS_HH
  2. # define MAINCLASS_HH
  3. class MainClass
  4. {
  5. public:
  6. MainClass(int argc, char* argv[]);
  7. int usage();
  8. int execute();
  9. private:
  10. int argc_;
  11. char** argv_;
  12. };
  13. #endif /* !MAINCLASS_HH */