Develop and Download Open Source Software

Browse CVS Repository

Diff of /xoonips/AL/group.cc

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

revision 1.5 by youi, Sat Jan 15 05:31:43 2005 UTC revision 1.6 by tani, Fri Feb 25 07:00:37 2005 UTC
# Line 3  Line 3 
3   *   *
4   * $Revision$   * $Revision$
5   * $Log$   * $Log$
6     * Revision 1.6  2005/02/25 07:00:37  tani
7     * item_number_limit, index_number_limit, item_storage_limitを追加.
8     *
9   * Revision 1.5  2005/01/15 05:31:43  youi   * Revision 1.5  2005/01/15 05:31:43  youi
10   * groupid_tを使って定義.   * groupid_tを使って定義.
11   *   *
# Line 55  groupid_t group::getGID() const{ return Line 58  groupid_t group::getGID() const{ return
58  const char* group::getGname() const{ return gname; }  const char* group::getGname() const{ return gname; }
59  const char* group::getDesc() const{ return desc; }  const char* group::getDesc() const{ return desc; }
60  int group::getGroupIndexID() const{ return groupIndexID; }  int group::getGroupIndexID() const{ return groupIndexID; }
61    int group::getItemNumberLimit() const { return itemNumberLimit; }
62    int group::getIndexNumberLimit() const { return indexNumberLimit; }
63    double group::getItemStorageLimit() const { return itemStorageLimit; }
64    
65  void group::setGID( groupid_t gid ){ this -> gid = gid; }  void group::setGID( groupid_t gid ){ this -> gid = gid; }
66  void group::setGname( const char *gname ){ setValue( &this -> gname, gname ); }  void group::setGname( const char *gname ){ setValue( &this -> gname, gname ); }
67  void group::setDesc( const char *desc ){ setValue( &this -> desc, desc ); }  void group::setDesc( const char *desc ){ setValue( &this -> desc, desc ); }
68  void group::setGroupIndexID( int xid ){ this -> groupIndexID = xid; }  void group::setGroupIndexID( int xid ){ this -> groupIndexID = xid; }
69    void group::setItemNumberLimit( int x ){ itemNumberLimit = x; }
70    void group::setIndexNumberLimit( int x ){ indexNumberLimit = x; }
71    void group::setItemStorageLimit( double x ){ itemStorageLimit = x; }
72    

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

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