18 #ifndef SRC_OJO_AGENT_OJOMATCH_HPP_ 19 #define SRC_OJO_AGENT_OJOMATCH_HPP_ 53 ojomatch(
const long int s,
const long int e,
const long int l,
54 const std::string c) :
55 start(s), end(e), len(l), content(c)
63 start(-1), end(-1), len(-1), license_fk(-1), content(
"")
67 bool operator==(
const std::string& matchcontent)
const 69 if(this->content.compare(matchcontent) == 0)
79 bool operator==(
const ojomatch& matchcontent)
const 81 if(this->content.compare(matchcontent.content) == 0)
int s
The socket that the CLI will use to communicate.
ojomatch(const long int s, const long int e, const long int l, const std::string c)
Store the results of a regex match.