On Friday, May 18, the normal maintenance window (17:00 Pacific time) will be extended for data center maintenance until 23:00 Pacific. No extended down-time is planned, but brief delays and interruptions are possible throughout the period.
pool.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_POOL_H_
00026 #define _SVNCPP_POOL_H_
00027
00028
00029 #include "svn_pools.h"
00030
00031 namespace svn
00032 {
00036 class Pool
00037 {
00038 public:
00044 Pool(apr_pool_t * parent = (apr_pool_t *)0);
00045
00046 virtual ~ Pool();
00047
00051 apr_pool_t *
00052 pool() const;
00053
00057 operator apr_pool_t * () const
00058 {
00059 return m_pool;
00060 }
00061
00065 void renew();
00066
00067 private:
00068 apr_pool_t * m_parent;
00069 apr_pool_t * m_pool;
00070
00071 Pool& operator=(const Pool&);
00072
00073 Pool(const Pool &);
00074 };
00075 }
00076
00077 #endif
00078
00079
00080
00081
00082
00083
Generated on Tue Oct 6 19:45:57 2009 for SvnCpp by
1.5.8