charman.h 442 B

12345678910111213141516171819202122232425
  1. #ifndef CHARMAN_H
  2. #define CHARMAN_H
  3. #include <string>
  4. #include <vector>
  5. class CharMan {
  6. private:
  7. std::string &buffer;
  8. std::string &work;
  9. std::string &text;
  10. std::vector<int> &text_offsets;
  11. std::vector<std::pair<int, int>> pos_len;
  12. void validate(void);
  13. void regular_expressions();
  14. public:
  15. CharMan(std::string &buffer, std::string &work, std::string &text,
  16. std::vector<int> &text_offsets);
  17. ~CharMan();
  18. };
  19. #endif