Changeset 579 for trunk/lib/SVN.h
- Timestamp:
- Mar 18, 2008, 3:11:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/SVN.h
r519 r579 7 7 Copyright (C) 2006 Jari Häkkinen 8 8 Copyright (C) 2007 Jari Häkkinen, Peter Johansson 9 Copyright (C) 2008 Peter Johansson 9 10 10 11 This file is part of svndigest, http://trac.thep.lu.se/svndigest … … 211 212 /// 212 213 SVN(const SVN&); 214 SVN& operator=(const SVN&); 213 215 214 216 /// … … 222 224 This function will write an error message to stdout, free \a 223 225 err and \a pool resources. If \a err or \a pool are a NULL 224 pointers the function will do nothing with these resources. 226 pointers the function will do nothing with these resources. If 227 \a mute is true, no error message is written. 225 228 226 229 cleanup will throw a SVNException if \a message has … … 231 234 */ 232 235 void cleanup(svn_error_t *err, apr_pool_t *pool, 233 const std::string& message=std::string());236 std::string message=std::string(), bool mute=false); 234 237 235 238 /** … … 243 246 @see SVNException 244 247 */ 245 void cleanup_failed_init(svn_error_t *err, const std::string& message); 248 void cleanup_failed_init(svn_error_t *err, const std::string& message, 249 bool mute=false); 246 250 247 251 static SVN* instance_;
Note: See TracChangeset
for help on using the changeset viewer.