git.stg.codes
/
stg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Expanded more abbreviations.
[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