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

1234567891011121314151617181920212223242526272829303132333435
  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, std::vector<std::string> keys);
  13. int dump(std::shared_ptr<FreeFareTagBusiness> tag, std::vector<std::string> keys);
  14. void printBlockAccessBits(const AccessBitsDbo& accessBits, int block);
  15. void printTrailerAccessBits(const AccessBitsDbo& accessBits);
  16. static void printPercent(int done, int total);
  17. private:
  18. int _argc;
  19. char** _argv;
  20. };
  21. #endif //PDNS_SLAVE_MAINCLASS_H