X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/9a834ba2e0caea6edffec5c1db403cf9832ea96e..6ab0912300acfcc3b686e31f698d090459b6d140:/projects/stargazer/plugins/configuration/sgconfig/parser_auth_by.h diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser_auth_by.h b/projects/stargazer/plugins/configuration/sgconfig/parser_auth_by.h new file mode 100644 index 00000000..c34586c9 --- /dev/null +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_auth_by.h @@ -0,0 +1,18 @@ +#ifndef __STG_PARSER_AUTH_BY_H__ +#define __STG_PARSER_AUTH_BY_H__ + +#include + +#include "parser.h" + +class PARSER_AUTH_BY : public BASE_PARSER { +public: + int ParseStart(void *data, const char *el, const char **attr); + int ParseEnd(void *data, const char *el); + void CreateAnswer(); + +private: + std::string login; +}; + +#endif