| 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 |
* |
* |
| 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 |
|
|