parser.hpp 393 B

12345678910111213141516
  1. #pragma once
  2. #include <vector>
  3. #include <string>
  4. #include <algorithm>
  5. class Parser {
  6. public:
  7. Parser(int argc, char** argv);
  8. ~Parser() = default;
  9. bool cmdOption(const std::string& option);
  10. const std::string& setFilename(const std::string& option, const int32_t points, const uint32_t number_channels, const uint32_t freq) ;
  11. private:
  12. std::vector<std::string> flags;
  13. };