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