#ifndef __JDB_JPERSONS__ #define __JDB_JPERSONS__ #include #include #include #include "JDB/JDBString.hh" /** * \author mdejong */ namespace JDATABASE {} namespace JPP { using namespace JDATABASE; } namespace JDATABASE { struct JPersons : public TObject { static const char* const getName() { return "persons"; } //!< Table name std::string OID; std::string LOGIN; JDBString NAME; JDBString SURNAME; std::string LOCATIONID; JDBString CITY; JDBString ADDRESS; std::string ACTIVESTATUS; std::string MEMBERSTATUS; std::string AUTHORSTATUS; ClassDef(JPersons, 1); }; } #endif