X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/bd3f1dd24a1af10b7c0e403397019610f727325c..e19baa83c7f24b07e8925473a0d322d6fec440f9:/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