Guitar
GitUser.h
Go to the documentation of this file.
1 
2 #ifndef GITUSER_H
3 #define GITUSER_H
4 
5 #include <string>
6 
7 struct GitUser {
8  std::string name;
9  std::string email;
10  explicit operator bool () const;
11 };
12 
13 #endif // GITUSER_H
Definition: GitUser.h:7
std::string email
Definition: GitUser.h:9
std::string name
Definition: GitUser.h:8