Browse CVS Repository
Diff of /xoonips/AL/changelog.h
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 8 |
#define CHANGELOG_H |
#define CHANGELOG_H |
| 9 |
|
|
| 10 |
#include "common.h" |
#include "common.h" |
| 11 |
|
#include "item.h" |
| 12 |
|
|
| 13 |
#define XNP_CHANGELOG_LOG_LEN 65535 |
#define XNP_CHANGELOG_LOG_LEN 65535 |
| 14 |
|
|
| 18 |
changelogid_t logid; |
changelogid_t logid; |
| 19 |
time_t date; |
time_t date; |
| 20 |
char* log; |
char* log; |
| 21 |
|
itemid_t item_id; |
| 22 |
public: |
public: |
| 23 |
changelog(); |
changelog(); |
| 24 |
changelog( changelogid_t, time_t, const char* ); |
changelog( changelogid_t, time_t, const char* ); |
| 26 |
|
|
| 27 |
changelogid_t getChangelogID() const; |
changelogid_t getChangelogID() const; |
| 28 |
time_t getDate() const; |
time_t getDate() const; |
| 29 |
|
itemid_t getItemID() const; |
| 30 |
const char* getLog() const; |
const char* getLog() const; |
| 31 |
|
|
| 32 |
void setChangelogID( changelogid_t ); |
void setChangelogID( changelogid_t ); |
| 33 |
void setDate( time_t ); |
void setDate( time_t ); |
| 34 |
|
void setItemID( itemid_t ); |
| 35 |
void setLog( const char* ); |
void setLog( const char* ); |
| 36 |
}; |
}; |
| 37 |
typedef changelog changelog_t; |
typedef changelog changelog_t; |
|
|
Legend:
| Removed from v.1.2 |
|
| changed lines |
| |
Added in v.1.3 |
|
|
|