Browse CVS Repository
Diff of /xoonips/AL/group.h
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 3 |
* |
* |
| 4 |
* $Revision$ |
* $Revision$ |
| 5 |
* $Log$ |
* $Log$ |
| 6 |
|
* Revision 1.4 2005/01/14 10:33:53 aga |
| 7 |
|
* ・int groupIndexIDを追加. |
| 8 |
|
* |
| 9 |
* Revision 1.3 2004/11/30 02:29:54 aga |
* Revision 1.3 2004/11/30 02:29:54 aga |
| 10 |
* ・getXxxx()をconstにした. |
* ・getXxxx()をconstにした. |
| 11 |
* |
* |
| 25 |
int gid; //グループコード |
int gid; //グループコード |
| 26 |
char* gname; //グループ名 |
char* gname; //グループ名 |
| 27 |
char* desc; //グループの説明 |
char* desc; //グループの説明 |
| 28 |
|
int groupIndexID; |
| 29 |
public: |
public: |
| 30 |
group(); |
group(); |
| 31 |
group( int gid, const char* gname, const char* desc ); |
group( int gid, const char* gname, const char* desc ); |
| 34 |
int getGID() const; |
int getGID() const; |
| 35 |
const char *getGname() const; |
const char *getGname() const; |
| 36 |
const char *getDesc() const; |
const char *getDesc() const; |
| 37 |
|
int getGroupIndexID() const; |
| 38 |
|
|
| 39 |
void setGID( int gid ); |
void setGID( int gid ); |
| 40 |
void setGname( const char *gname ); |
void setGname( const char *gname ); |
| 41 |
void setDesc( const char *desc ); |
void setDesc( const char *desc ); |
| 42 |
|
void setGroupIndexID( int xid ); |
| 43 |
}; |
}; |
| 44 |
|
|
| 45 |
typedef group group_t; |
typedef group group_t; |
|
|
Legend:
| Removed from v.1.3 |
|
| changed lines |
| |
Added in v.1.4 |
|
|
|