12345678910111213141516171819202122232425 |
- #ifndef CHARMAN_H
- #define CHARMAN_H
- #include <string>
- #include <vector>
- class CharMan {
- private:
- std::string &buffer;
- std::string &work;
- std::string &text;
- std::vector<int> &text_offsets;
- std::vector<std::pair<int, int>> pos_len;
- void validate(void);
- void regular_expressions();
- public:
- CharMan(std::string &buffer, std::string &work, std::string &text,
- std::vector<int> &text_offsets);
- ~CharMan();
- };
- #endif
|