Changeset 36529 in vbox for trunk/include/iprt/cpp/autores.h
- Timestamp:
- Apr 4, 2011 1:54:13 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70953
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/autores.h
r36508 r36529 1 1 /** @file 2 * IPRT - C++ Extensions: resource lifetime management2 * IPRT - C++ Resource Management. 3 3 */ 4 4 … … 29 29 #include <iprt/types.h> 30 30 #include <iprt/assert.h> 31 32 /** 33 * A simple class used to prevent copying and assignment. 34 * 35 * Inherit from this class in order to prevent automatic generation 36 * of the copy constructor and assignment operator in your class. 37 * 38 * @todo Functionality duplicated by iprt::non_copyable. grr! 39 * 40 * @addtogroup grp_rt_cpp_util 41 */ 42 class RTCNonCopyable 43 { 44 protected: 45 RTCNonCopyable() {} 46 ~RTCNonCopyable() {} 47 private: 48 RTCNonCopyable(RTCNonCopyable const &); 49 RTCNonCopyable const &operator=(RTCNonCopyable const &); 50 }; 31 #include <iprt/cpp/utils.h> 32 51 33 52 34 … … 93 75 * 94 76 * The idea of this class is to manage resources which the current code is 95 * responsible for freeing. By wrapping the resource in an RT AutoRes, you77 * responsible for freeing. By wrapping the resource in an RTCAutoRes, you 96 78 * ensure that the resource will be freed when you leave the scope in which 97 * the RT AutoRes is defined, unless you explicitly release the resource.79 * the RTCAutoRes is defined, unless you explicitly release the resource. 98 80 * 99 81 * A typical use case is when a function is allocating a number of resources. 100 82 * If any single allocation fails then all other resources must be freed. If 101 83 * all allocations succeed, then the resources should be returned to the 102 * caller. By placing all allocated resources in RT AutoRes containers, you84 * caller. By placing all allocated resources in RTCAutoRes containers, you 103 85 * ensure that they will be freed on failure, and only have to take care of 104 86 * releasing them when you return them. … … 116 98 */ 117 99 template <class T, void Destruct(T) = RTAutoResDestruct<T>, T NilRes(void) = RTAutoResNil<T> > 118 class RT AutoRes100 class RTCAutoRes 119 101 : public RTCNonCopyable 120 102 { … … 129 111 * @param a_hRes The handle to resource to manage. Defaults to NIL. 130 112 */ 131 RT AutoRes(T a_hRes = NilRes())113 RTCAutoRes(T a_hRes = NilRes()) 132 114 : m_hRes(a_hRes) 133 115 { … … 139 121 * This destroys any resource currently managed by the object. 140 122 */ 141 ~RT AutoRes()123 ~RTCAutoRes() 142 124 { 143 125 if (m_hRes != NilRes()) … … 153 135 * @param a_hRes The handle to the new resource. 154 136 */ 155 RT AutoRes &operator=(T a_hRes)137 RTCAutoRes &operator=(T a_hRes) 156 138 { 157 139 if (m_hRes != NilRes())
Note:
See TracChangeset
for help on using the changeset viewer.