]> git.stg.codes - stg.git/blob - stglibs/srvconf.lib/include/stg/parser.h
66263692ca7d0b53803c3fc82cc2eed3b8ec3161
[stg.git] / stglibs / srvconf.lib / include / stg / parser.h
1 #ifndef __STG_STGLIBS_SRVCONF_PARSER_H__
2 #define __STG_STGLIBS_SRVCONF_PARSER_H__
3
4 class PARSER
5 {
6 public:
7     virtual ~PARSER() {}
8     virtual int ParseStart(const char *el, const char **attr) = 0;
9     virtual void ParseEnd(const char *el) = 0;
10 };
11
12 #endif