The Tigris site will receive a major upgrade the evening of Monday, December 1, beginning at 8:30 pm PST. Downtime is projected to be about ten hours.
Further details in the announcement
log_entry.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef _SVNCPP_LOG_ENTRY_H_
00027 #define _SVNCPP_LOG_ENTRY_H_
00028
00029
00030 #include <string>
00031 #include <list>
00032
00033
00034 #include "apr_time.h"
00035
00036
00037 #include "svn_types.h"
00038
00039 namespace svn
00040 {
00041
00042 struct LogChangePathEntry
00043 {
00044 LogChangePathEntry (const char *path_,
00045 char action_,
00046 const char *copyFromPath_,
00047 const svn_revnum_t copyFromRevision_);
00048
00049 std::string path;
00050 char action;
00051 std::string copyFromPath;
00052 svn_revnum_t copyFromRevision;
00053 };
00054
00055
00056 struct LogEntry
00057 {
00058 public:
00059 LogEntry ();
00060
00061 LogEntry (const svn_revnum_t revision,
00062 const char * author,
00063 const char * date,
00064 const char * message);
00065
00066 svn_revnum_t revision;
00067 std::string author;
00068 std::string message;
00069 std::list<LogChangePathEntry> changedPaths;
00070 apr_time_t date;
00071 };
00072 }
00073
00074 #endif
00075
00076
00077
00078
00079
00080
Generated on Tue Mar 4 00:40:36 2008 for SvnCpp by
1.5.3