Browse CVS Repository
Annotation of /xoonips/AL/group.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.4 -
( hide annotations)
( download)
( as text)
Fri Jan 14 10:33:53 2005 UTC
(19 years, 2 months ago)
by aga
Branch: MAIN
Changes since 1.3: +7 -1 lines
File MIME type: text/x-chdr
・int groupIndexIDを追加.
| 1 |
youi |
1.1 |
/* |
| 2 |
|
|
* Platform?違???若??膊∞???????????????劫?荐? |
| 3 |
|
|
* |
| 4 |
aga |
1.4 |
* $Revision: 1.3 $ |
| 5 |
youi |
1.2 |
* $Log: group.h,v $ |
| 6 |
aga |
1.4 |
* Revision 1.3 2004/11/30 02:29:54 aga |
| 7 |
|
|
* ??etXxxx()??const??????. |
| 8 |
|
|
* |
| 9 |
aga |
1.3 |
* Revision 1.2 2004/11/25 04:12:14 youi |
| 10 |
|
|
* typedef??菴遵??. |
| 11 |
|
|
* |
| 12 |
youi |
1.2 |
* Revision 1.1 2004/11/22 08:25:16 youi |
| 13 |
|
|
* initial version. |
| 14 |
|
|
* |
| 15 |
youi |
1.1 |
* |
| 16 |
|
|
*/ |
| 17 |
|
|
#if !defined( GROUP_H ) |
| 18 |
|
|
#define GROUP_H |
| 19 |
|
|
|
| 20 |
|
|
class group{ |
| 21 |
|
|
private: |
| 22 |
|
|
int gid; //?違???若???潟?若?? |
| 23 |
|
|
char* gname; //?違???若???? |
| 24 |
|
|
char* desc; //?違???若???????/span> |
| 25 |
aga |
1.4 |
int groupIndexID; |
| 26 |
youi |
1.1 |
public: |
| 27 |
|
|
group(); |
| 28 |
|
|
group( int gid, const char* gname, const char* desc ); |
| 29 |
|
|
~group(); |
| 30 |
|
|
|
| 31 |
aga |
1.3 |
int getGID() const; |
| 32 |
|
|
const char *getGname() const; |
| 33 |
|
|
const char *getDesc() const; |
| 34 |
aga |
1.4 |
int getGroupIndexID() const; |
| 35 |
youi |
1.1 |
|
| 36 |
|
|
void setGID( int gid ); |
| 37 |
|
|
void setGname( const char *gname ); |
| 38 |
|
|
void setDesc( const char *desc ); |
| 39 |
aga |
1.4 |
void setGroupIndexID( int xid ); |
| 40 |
youi |
1.1 |
}; |
| 41 |
youi |
1.2 |
|
| 42 |
|
|
typedef group group_t; |
| 43 |
youi |
1.1 |
|
| 44 |
|
|
#endif |
|