#include <IniParser.h>
Public Member Functions | |
Regex_t () | |
has regex been regcomp'd and should it be regfree'd? | |
~Regex_t () | |
int | compile (const string &pattern, bool ignore_case) |
Private Member Functions | |
REP_BODY (Regex_t) | |
Private Attributes | |
regex_t | regex |
bool | live |
glibc regex buffer | |
Friends | |
class | Regex |
prohibits copying and assignment just like we want |
Wrapper to manage regex_t * Must not be copied because regex_t is opaque
Regex_t::Regex_t | ( | ) | [inline] |
has regex been regcomp'd and should it be regfree'd?
int Regex_t::compile | ( | const string & | pattern, | |
bool | ignore_case | |||
) | [inline] |
Regex_t::REP_BODY | ( | Regex_t | ) | [private] |
friend class Regex [friend] |
prohibits copying and assignment just like we want
bool Regex_t::live [private] |
glibc regex buffer
Referenced by compile(), and ~Regex_t().
regex_t Regex_t::regex [private] |
Referenced by compile(), and ~Regex_t().