- Project tools
-
-
- How do I...
-
| Category |
Featured projects |
| scm |
Subversion,
Subclipse,
TortoiseSVN,
RapidSVN
|
| issuetrack |
Scarab |
| requirements |
xmlbasedsrs |
| design |
ArgoUML |
| techcomm |
SubEtha,
eyebrowse,
midgard,
cowiki |
| construction |
antelope,
scons,
frameworx,
build-interceptor,
propel,
phing
|
| testing |
maxq,
aut
|
| deployment |
current |
| process |
ReadySET |
| libraries |
GEF,
Axion,
Style,
SSTree
|
| Over 500 more tools... |
|
info.hppGo 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 #ifndef _SVNCPP_INFO_HPP_
00025 #define _SVNCPP_INFO_HPP_
00026
00027
00028 #include "svn_client.h"
00029
00030 namespace svn
00031 {
00032
00033 class Path;
00034
00039 class Info
00040 {
00041 public:
00052 Info(const Path & path, const svn_info_t * src = 0);
00053
00057 Info(const Info & src);
00058
00062 virtual ~Info();
00063
00067 Info &
00068 operator = (const Info &);
00069
00078 bool isValid() const;
00079
00081 const Path &
00082 path() const;
00083
00085 svn_revnum_t
00086 revision() const;
00087
00089 const char *
00090 url() const;
00091
00093 const char *
00094 repos() const;
00095
00097 const char *
00098 uuid() const;
00099
00101 svn_node_kind_t
00102 kind() const;
00103
00104 svn_revnum_t
00105 lastChangedRev() const;
00106
00107 apr_time_t
00108 lastChangedDate() const;
00109
00110 const char *
00111 lastChangedAuthoer() const;
00112
00115 private:
00116 struct Data;
00117
00118 Data * m;
00119 };
00120
00121 }
00122
00123 #endif
00124
00125
00126
00127
00128
Generated on Tue Oct 6 19:45:57 2009 for SvnCpp by
1.5.8
|