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
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
00026 #ifndef _SVNCPP_POOL_H_
00027 #define _SVNCPP_POOL_H_
00028
00029
00030 #include "svn_pools.h"
00031
00032 namespace svn
00033 {
00037 class Pool
00038 {
00039 public:
00045 Pool (apr_pool_t * parent = (apr_pool_t *)0);
00046
00047 virtual ~ Pool ();
00048
00052 apr_pool_t *
00053 pool () const;
00054
00058 operator apr_pool_t * () const
00059 {
00060 return m_pool;
00061 }
00062
00066 void renew ();
00067
00068 private:
00069 apr_pool_t * m_parent;
00070 apr_pool_t * m_pool;
00071
00072 Pool& operator=(const Pool&);
00073
00074 Pool (const Pool &);
00075 };
00076 }
00077
00078 #endif
00079
00080
00081
00082
00083
00084
Generated on Tue Mar 4 00:40:36 2008 for SvnCpp by
1.5.3