Jpp - the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JPersons.hh
Go to the documentation of this file.
1 #ifndef __JDB_JPERSONS__
2 #define __JDB_JPERSONS__
3 
4 #include <TROOT.h>
5 #include <TObject.h>
6 
7 #include <string>
8 
9 #include "JDB/JDBString.hh"
10 
11 /**
12  * \author mdejong
13  */
14 namespace JDATABASE {}
15 namespace JPP { using namespace JDATABASE; }
16 
17 namespace JDATABASE {
18 
19  struct JPersons :
20  public TObject
21  {
22  static const char* const getName() { return "persons"; } //!< Table name
23 
24  std::string OID;
25  std::string LOGIN;
31  std::string ACTIVESTATUS;
32  std::string MEMBERSTATUS;
33  std::string AUTHORSTATUS;
34 
35  ClassDef(JPersons, 1);
36  };
37 }
38 
39 #endif
ClassDef(JPersons, 1)
std::string MEMBERSTATUS
Definition: JPersons.hh:32
std::string LOGIN
Definition: JPersons.hh:25
Wrapper class to read string until end-of-line.
Definition: JDBString.hh:19
Definition: JRoot.hh:19
JDBString ADDRESS
Definition: JPersons.hh:30
static const char *const getName()
Table name.
Definition: JPersons.hh:22
JDBString LOCATIONID
Definition: JPersons.hh:28
JDBString NAME
Definition: JPersons.hh:26
std::string OID
Definition: JPersons.hh:24
JDBString CITY
Definition: JPersons.hh:29
JDBString SURNAME
Definition: JPersons.hh:27
std::string AUTHORSTATUS
Definition: JPersons.hh:33
std::string ACTIVESTATUS
Definition: JPersons.hh:31