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.h 443B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Created by robin on 8/8/15.
  3. //
  4. #ifndef PDNS_SLAVE_MAINCLASS_H
  5. #define PDNS_SLAVE_MAINCLASS_H
  6. #include <memory>
  7. #include <Business/FreeFareTagBusiness.h>
  8. class MainClass {
  9. public:
  10. MainClass(int argc, char* argv[]);
  11. int main();
  12. int mapKeys(std::shared_ptr<FreeFareTagBusiness> tag);
  13. int dump(std::shared_ptr<FreeFareTagBusiness> tag);
  14. private:
  15. int _argc;
  16. char** _argv;
  17. };
  18. #endif //PDNS_SLAVE_MAINCLASS_H