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 249B

12345678910111213141516
  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. bool build_actions_();
  11. int argc_;
  12. char** argv_;
  13. };
  14. #endif /* !MAINCLASS_HH */