Develop and Download Open Source Software

Browse CVS Repository

Diff of /xoonips/AL/changelog.h

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

revision 1.1 by youi, Sat Jan 15 05:44:17 2005 UTC revision 1.2 by youi, Wed Jan 19 06:11:30 2005 UTC
# Line 9  Line 9 
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

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