7 #ifndef SRC_OJO_AGENT_OJOMATCH_HPP_
8 #define SRC_OJO_AGENT_OJOMATCH_HPP_
42 ojomatch(
const long int s,
const long int e,
const long int l,
43 const std::string c) :
56 bool operator==(
const std::string& matchcontent)
const
58 if(this->content.compare(matchcontent) == 0)
68 bool operator==(
const ojomatch& matchcontent)
const
70 if(this->content.compare(matchcontent.content) == 0)
int s
The socket that the CLI will use to communicate.
Store the results of a regex match.
ojomatch(const long int s, const long int e, const long int l, const std::string c)