GL Studio API
scoped_ptr.h
Go to the documentation of this file.
1 /*! \file
2  \brief scoped ptr
3 
4  \par Copyright Information
5 
6  Copyright (c) 2016 by The DiSTI Corporation.<br>
7  11301 Corporate Blvd; Suite 100<br>
8  Orlando, Florida 32817<br>
9  USA<br>
10  <br>
11  All rights reserved.<br>
12 
13  This Software contains proprietary trade secrets of DiSTI and may not be
14 reproduced, in whole or part, in any form, or by any means of electronic,
15 mechanical, or otherwise, without the written permission of DiSTI. Said
16 permission may be derived through the purchase of applicable DiSTI product
17 licenses which detail the distribution rights of this content and any
18 Derivative Works based on this or other copyrighted DiSTI Software.
19 
20  NO WARRANTY. THE SOFTWARE IS PROVIDED "AS-IS," WITHOUT WARRANTY OF ANY KIND,
21 AND ANY USE OF THIS SOFTWARE PRODUCT IS AT YOUR OWN RISK. TO THE MAXIMUM EXTENT
22 PERMITTED BY APPLICABLE LAW, DISTI AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES
23 AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
24 IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND/OR FITNESS FOR A
25 PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE.
26 
27  LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,
28 IN NO EVENT SHALL DISTI OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
29 INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION,
30 DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS
31 INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR
32 INABILITY TO USE THE SOFTWARE, EVEN IF DISTI HAS BEEN ADVISED OF THE POSSIBILITY
33 OF SUCH DAMAGES. DISTI'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY SHALL NOT
34 EXCEED FIVE DOLLARS (US$5.00).
35 
36  The aforementioned terms and restrictions are governed by the laws of the
37 State of Florida and the United States of America.
38 
39 */
40 #ifndef INCLUDED_SCOPED_PTR_H
41 #define INCLUDED_SCOPED_PTR_H
42 
43 #include "disti_assert.h"
44 
45 namespace disti
46 {
47  /** The ScopedPtr class template stores a pointer to a dynamically allocated object.
48  * The object pointed to is guaranteed to be deleted, either on destruction of the ScopedPtr, or via an explicit Reset.
49  */
50  template< class T >
51  class ScopedPtr
52  {
53  public:
54  explicit ScopedPtr( T* p = NULL )
55  : _p( p )
56  {
57  }
58 
59  ~ScopedPtr()
60  {
61  delete _p;
62  _p = NULL;
63  }
64 
65  T& operator*() const
66  {
67  GLS_ASSERT( _p );
68  return *_p;
69  }
70 
71  T* operator->() const
72  {
73  GLS_ASSERT( _p );
74  return _p;
75  }
76 
77  void Reset( T* p = NULL )
78  {
79  delete _p;
80  _p = p;
81  }
82 
83  bool IsNull() const
84  {
85  return NULL == _p;
86  }
87 
88  T* Get() const { return _p; }
89 
90  private:
91  ScopedPtr( const ScopedPtr& );
92  ScopedPtr& operator=( ScopedPtr& );
93 
94  T* _p;
95  };
96 
97 } // namespace disti
98 
99 #endif
#define GLS_ASSERT(exp)
Definition: disti_assert.h:132
Definition: scoped_ptr.h:51
Contains the DistiAssert macro.
Definition: bmpimage.h:46