Develop and Download Open Source Software

Browse CVS Repository

Diff of /xoonips/AL/account.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.3 by youi, Thu Nov 25 08:57:15 2004 UTC revision 1.4 by youi, Wed Dec 1 10:28:58 2004 UTC
# Line 3  Line 3 
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   *   *
# Line 29  private: Line 34  private:
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;  //< ファックス番号
# Line 78  public: Line 83  public:
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;
# Line 123  public: Line 128  public:
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);

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26