Browse CVS Repository
Contents of /xoonips/AL/changelog.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Sat Jan 15 05:44:17 2005 UTC
(19 years, 2 months ago)
by youi
Branch: MAIN
File MIME type: text/x-chdr
initial version
| 1 |
/* |
| 2 |
* |
| 3 |
* $Revision$ |
| 4 |
* |
| 5 |
*/ |
| 6 |
|
| 7 |
#if !defined( CHANGELOG_H ) |
| 8 |
#define CHANGELOG_H |
| 9 |
|
| 10 |
#include "common.h" |
| 11 |
|
| 12 |
class changelog{ |
| 13 |
private: |
| 14 |
public: |
| 15 |
changelog(); |
| 16 |
~changelog(); |
| 17 |
|
| 18 |
int getChangelogID() const; |
| 19 |
time_t getLogDate() const; |
| 20 |
const char* getLog() const; |
| 21 |
|
| 22 |
void setChangelogID(int); |
| 23 |
void setLogDate( time_t ); |
| 24 |
void setLog( const char* ); |
| 25 |
}; |
| 26 |
typedef changelog changelog_t; |
| 27 |
|
| 28 |
#endif |
|