Browse CVS Repository
Diff of /xoonips/AL/changelog.h
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 9 |
|
|
| 10 |
#include "common.h" |
#include "common.h" |
| 11 |
|
|
| 12 |
|
#define XNP_CHANGELOG_LOG_LEN 65535 |
| 13 |
|
|
| 14 |
|
typedef unsigned int changelogid_t; |
| 15 |
class changelog{ |
class changelog{ |
| 16 |
private: |
private: |
| 17 |
|
changelogid_t logid; |
| 18 |
|
time_t date; |
| 19 |
|
char* log; |
| 20 |
public: |
public: |
| 21 |
changelog(); |
changelog(); |
| 22 |
|
changelog( changelogid_t, time_t, const char* ); |
| 23 |
~changelog(); |
~changelog(); |
| 24 |
|
|
| 25 |
int getChangelogID() const; |
changelogid_t getChangelogID() const; |
| 26 |
time_t getLogDate() const; |
time_t getDate() const; |
| 27 |
const char* getLog() const; |
const char* getLog() const; |
| 28 |
|
|
| 29 |
void setChangelogID(int); |
void setChangelogID( changelogid_t ); |
| 30 |
void setLogDate( time_t ); |
void setDate( time_t ); |
| 31 |
void setLog( const char* ); |
void setLog( const char* ); |
| 32 |
}; |
}; |
| 33 |
typedef changelog changelog_t; |
typedef changelog changelog_t; |
|
|
Legend:
| Removed from v.1.1 |
|
| changed lines |
| |
Added in v.1.2 |
|
|
|