Develop and Download Open Source Software

Browse CVS Repository

Annotation of /xoonips/AL/changelog.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (hide annotations) (download) (as text)
Sat Jan 22 09:25:14 2005 UTC (19 years, 2 months ago) by youi
Branch: MAIN
CVS Tags: mv_to_sourceforge_20050217, demo20050128
Changes since 1.2: +5 -1 lines
File MIME type: text/x-chdr
アイテムIDを追加した.

1 youi 1.1 /*
2     *
3 youi 1.3 * $Revision: 1.2 $
4 youi 1.1 *
5     */
6    
7     #if !defined( CHANGELOG_H )
8     #define CHANGELOG_H
9    
10     #include "common.h"
11 youi 1.3 #include "item.h"
12 youi 1.1
13 youi 1.2 #define XNP_CHANGELOG_LOG_LEN 65535
14    
15     typedef unsigned int changelogid_t;
16 youi 1.1 class changelog{
17     private:
18 youi 1.2 changelogid_t logid;
19     time_t date;
20     char* log;
21 youi 1.3 itemid_t item_id;
22 youi 1.1 public:
23     changelog();
24 youi 1.2 changelog( changelogid_t, time_t, const char* );
25 youi 1.1 ~changelog();
26    
27 youi 1.2 changelogid_t getChangelogID() const;
28     time_t getDate() const;
29 youi 1.3 itemid_t getItemID() const;
30 youi 1.1 const char* getLog() const;
31    
32 youi 1.2 void setChangelogID( changelogid_t );
33     void setDate( time_t );
34 youi 1.3 void setItemID( itemid_t );
35 youi 1.1 void setLog( const char* );
36     };
37     typedef changelog changelog_t;
38    
39     #endif

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26