Browse CVS Repository
Contents of /xoonips/AL/item.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Sat Dec 25 10:28:25 2004 UTC
(19 years, 3 months ago)
by aga
Branch: MAIN
File MIME type: text/x-chdr
・index, item を追加.
| 1 |
/* |
| 2 |
* |
| 3 |
* ?≪?ゃ????(BasicInformation)膊∞?????????鴻???荐? |
| 4 |
* |
| 5 |
* $Revision$ |
| 6 |
*/ |
| 7 |
|
| 8 |
#if !defined( ITEM_H ) |
| 9 |
#define ITEM_H |
| 10 |
|
| 11 |
#include "common.h" |
| 12 |
|
| 13 |
class item { |
| 14 |
private: |
| 15 |
int iid; |
| 16 |
int itemTypeID; |
| 17 |
char *subtype; |
| 18 |
int contributorUID; |
| 19 |
char *title; |
| 20 |
char *keywords; |
| 21 |
char *description; |
| 22 |
time_t lastUpdateDate; |
| 23 |
time_t creationDate; |
| 24 |
|
| 25 |
public: |
| 26 |
item(); |
| 27 |
~item(); |
| 28 |
|
| 29 |
int getIID() const; |
| 30 |
int getItemTypeID() const; |
| 31 |
const char *getSubtype() const; |
| 32 |
int getContributorUID() const; |
| 33 |
const char *getTitle() const; |
| 34 |
const char *getKeywords() const; |
| 35 |
const char *getDescription() const; |
| 36 |
time_t getLastUpdateDate() const; |
| 37 |
time_t getCreationDate() const; |
| 38 |
|
| 39 |
|
| 40 |
void setIID(int); |
| 41 |
void setItemTypeID(int); |
| 42 |
void setSubtype(const char *); |
| 43 |
void setContributorUID(int); |
| 44 |
void setTitle(const char*); |
| 45 |
void setKeywords(const char*); |
| 46 |
void setDescriptor(const char*); |
| 47 |
void setLastUpdateDate(time_t); |
| 48 |
void setCreationDate(time_t); |
| 49 |
}; |
| 50 |
|
| 51 |
#endif |
|