GME
13
|
00001 00023 #pragma once 00024 #include "apr.h" 00025 00026 struct apr_pool_t; 00027 00033 class Pool 00034 { 00035 public: 00036 Pool(); 00037 Pool(Pool& parent); 00038 ~Pool(); 00039 apr_pool_t * pool() const; 00040 00041 private: 00045 apr_pool_t * m_pool; 00046 00047 };