VirtualBox

Changeset 36529 in vbox for trunk/include/iprt/cpp/autores.h


Ignore:
Timestamp:
Apr 4, 2011 1:54:13 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
70953
Message:

iprt::non_copyable -> RTCNonCopyable (now in utils.h), moved and renamed RTMemAutoPtr et al out of iprt/mem.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/cpp/autores.h

    r36508 r36529  
    11/** @file
    2  * IPRT - C++ Extensions: resource lifetime management
     2 * IPRT - C++ Resource Management.
    33 */
    44
     
    2929#include <iprt/types.h>
    3030#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
    5133
    5234
     
    9375 *
    9476 * The idea of this class is to manage resources which the current code is
    95  * responsible for freeing.  By wrapping the resource in an RTAutoRes, you
     77 * responsible for freeing.  By wrapping the resource in an RTCAutoRes, you
    9678 * ensure that the resource will be freed when you leave the scope in which
    97  * the RTAutoRes is defined, unless you explicitly release the resource.
     79 * the RTCAutoRes is defined, unless you explicitly release the resource.
    9880 *
    9981 * A typical use case is when a function is allocating a number of resources.
    10082 * If any single allocation fails then all other resources must be freed.  If
    10183 * all allocations succeed, then the resources should be returned to the
    102  * caller.  By placing all allocated resources in RTAutoRes containers, you
     84 * caller.  By placing all allocated resources in RTCAutoRes containers, you
    10385 * ensure that they will be freed on failure, and only have to take care of
    10486 * releasing them when you return them.
     
    11698 */
    11799template <class T, void Destruct(T) = RTAutoResDestruct<T>, T NilRes(void) = RTAutoResNil<T> >
    118 class RTAutoRes
     100class RTCAutoRes
    119101    : public RTCNonCopyable
    120102{
     
    129111     * @param   a_hRes      The handle to resource to manage. Defaults to NIL.
    130112     */
    131     RTAutoRes(T a_hRes = NilRes())
     113    RTCAutoRes(T a_hRes = NilRes())
    132114        : m_hRes(a_hRes)
    133115    {
     
    139121     * This destroys any resource currently managed by the object.
    140122     */
    141     ~RTAutoRes()
     123    ~RTCAutoRes()
    142124    {
    143125        if (m_hRes != NilRes())
     
    153135     * @param   a_hRes      The handle to the new resource.
    154136     */
    155     RTAutoRes &operator=(T a_hRes)
     137    RTCAutoRes &operator=(T a_hRes)
    156138    {
    157139        if (m_hRes != NilRes())
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette