| 3 |
* |
* |
| 4 |
* $Revision$ |
* $Revision$ |
| 5 |
* $Log$ |
* $Log$ |
| 6 |
|
* Revision 1.4 2004/12/01 10:28:58 youi |
| 7 |
|
* DBカラム名の変更に伴う修正 |
| 8 |
|
* institute -> division |
| 9 |
|
* organizaion -> company_name |
| 10 |
|
* |
| 11 |
* Revision 1.3 2004/11/25 08:57:15 youi |
* Revision 1.3 2004/11/25 08:57:15 youi |
| 12 |
* get系関数にconst修飾. |
* get系関数にconst修飾. |
| 13 |
* |
* |
| 14 |
* Revision 1.2 2004/11/25 04:11:43 youi |
* Revision 1.2 2004/11/25 04:11:43 youi |
| 15 |
* typedefを追加. |
* typedefを追加. |
| 16 |
* |
* |
| 17 |
* Revision 1.1 2004/11/22 08:25:16 youi |
* Revision 1.1 2004/11/22 08:25:16 youi |
| 18 |
* initial version. |
* initial version. |
| 19 |
* |
* |
| 34 |
int uid; //< ユーザコード |
int uid; //< ユーザコード |
| 35 |
bool activate; //< モデレータによる承認フラグ |
bool activate; //< モデレータによる承認フラグ |
| 36 |
char* address; //< 住所 |
char* address; //< 住所 |
| 37 |
char* institute; //< 所属 |
char* division; //< 所属 |
| 38 |
char* tel; //< 電話番号 |
char* tel; //< 電話番号 |
| 39 |
char* organization; //< 学校/会社名 |
char* company_name; //< 学校/会社名 |
| 40 |
char* country; //< 国名 |
char* country; //< 国名 |
| 41 |
char* zipcode; //< 郵便番号 |
char* zipcode; //< 郵便番号 |
| 42 |
char* fax; //< ファックス番号 |
char* fax; //< ファックス番号 |
| 83 |
int getUID() const; |
int getUID() const; |
| 84 |
bool getActivate() const; |
bool getActivate() const; |
| 85 |
const char *getAddress() const; |
const char *getAddress() const; |
| 86 |
const char *getInstitute() const; |
const char *getDivision() const; |
| 87 |
const char *getTel() const; |
const char *getTel() const; |
| 88 |
const char *getOrganization() const; |
const char *getCompanyName() const; |
| 89 |
const char *getCountry() const; |
const char *getCountry() const; |
| 90 |
const char *getZipcode() const; |
const char *getZipcode() const; |
| 91 |
const char *getFax() const; |
const char *getFax() const; |
| 128 |
void setUID(int uid); |
void setUID(int uid); |
| 129 |
void setActivate(bool activate); |
void setActivate(bool activate); |
| 130 |
void setAddress(const char *address); |
void setAddress(const char *address); |
| 131 |
void setInstitute(const char *institute); |
void setDivision(const char *division); |
| 132 |
void setTel(const char *tel); |
void setTel(const char *tel); |
| 133 |
void setOrganization(const char *organization); |
void setCompanyName(const char *company_name); |
| 134 |
void setCountry(const char *country); |
void setCountry(const char *country); |
| 135 |
void setZipcode(const char *zipcode); |
void setZipcode(const char *zipcode); |
| 136 |
void setFax(const char *fax); |
void setFax(const char *fax); |