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
info.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 #ifndef _SVNCPP_INFO_HPP_
00026 #define _SVNCPP_INFO_HPP_
00027
00028
00029 #include "svn_client.h"
00030
00031 namespace svn
00032 {
00033
00034 class Path;
00035
00040 class Info
00041 {
00042 public:
00053 Info (const Path & path, const svn_info_t * src = 0);
00054
00058 Info (const Info & src);
00059
00063 virtual ~Info ();
00064
00068 Info &
00069 operator = (const Info &);
00070
00079 bool isValid () const;
00080
00082 const Path &
00083 path () const;
00084
00086 const svn_revnum_t
00087 revision () const;
00088
00090 const char *
00091 url () const;
00092
00094 const char *
00095 repos () const;
00096
00098 const char *
00099 uuid () const;
00100
00102 const svn_node_kind_t
00103 kind () const;
00104
00105 svn_revnum_t
00106 lastChangedRev () const;
00107
00108 apr_time_t
00109 lastChangedDate () const;
00110
00111 const char *
00112 lastChangedAuthoer () const;
00113
00116 private:
00117 struct Data;
00118
00119 Data * m;
00120 };
00121
00122 }
00123
00124 #endif
00125
00126
00127
00128
00129
Generated on Tue Mar 4 00:40:36 2008 for SvnCpp by
1.5.3