| 3 |
* |
* |
| 4 |
* $Revision$ |
* $Revision$ |
| 5 |
* $Log$ |
* $Log$ |
| 6 |
|
* Revision 1.8 2005/02/25 07:00:37 tani |
| 7 |
|
* item_number_limit, index_number_limit, item_storage_limitを追加. |
| 8 |
|
* |
| 9 |
* Revision 1.7 2005/02/03 12:03:10 youi |
* Revision 1.7 2005/02/03 12:03:10 youi |
| 10 |
* 定数定義のデータ型を修正. |
* 定数定義のデータ型を修正. |
| 11 |
* |
* |
| 39 |
char* gname; //グループ名 |
char* gname; //グループ名 |
| 40 |
char* desc; //グループの説明 |
char* desc; //グループの説明 |
| 41 |
unsigned int groupIndexID; |
unsigned int groupIndexID; |
| 42 |
|
int itemNumberLimit; |
| 43 |
|
int indexNumberLimit; |
| 44 |
|
double itemStorageLimit; |
| 45 |
public: |
public: |
| 46 |
const static groupid_t GID_DEFAULT = 1; |
const static groupid_t GID_DEFAULT = 1; |
| 47 |
|
|
| 53 |
const char *getGname() const; |
const char *getGname() const; |
| 54 |
const char *getDesc() const; |
const char *getDesc() const; |
| 55 |
int getGroupIndexID() const; |
int getGroupIndexID() const; |
| 56 |
|
int getItemNumberLimit( ) const; |
| 57 |
|
int getIndexNumberLimit( ) const; |
| 58 |
|
double getItemStorageLimit( ) const; |
| 59 |
|
|
| 60 |
void setGID( groupid_t gid ); |
void setGID( groupid_t gid ); |
| 61 |
void setGname( const char *gname ); |
void setGname( const char *gname ); |
| 62 |
void setDesc( const char *desc ); |
void setDesc( const char *desc ); |
| 63 |
void setGroupIndexID( int xid ); |
void setGroupIndexID( int xid ); |
| 64 |
|
void setItemNumberLimit( int ); |
| 65 |
|
void setIndexNumberLimit( int ); |
| 66 |
|
void setItemStorageLimit( double ); |
| 67 |
}; |
}; |
| 68 |
|
|
| 69 |
typedef group group_t; |
typedef group group_t; |