]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/configuration/sgconfig/parser_auth_by.h
Added missing files.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / parser_auth_by.h
1 #ifndef __STG_PARSER_AUTH_BY_H__
2 #define __STG_PARSER_AUTH_BY_H__
3
4 #include <string>
5
6 #include "parser.h"
7
8 class PARSER_AUTH_BY : public BASE_PARSER {
9 public:
10     int ParseStart(void *data, const char *el, const char **attr);
11     int ParseEnd(void *data, const char *el);
12     void CreateAnswer();
13
14 private:
15     std::string login;
16 };
17
18 #endif