| 3119 | |
| 3120 | template <typename Type> |
| 3121 | struct GCArray_T : GCItem |
| 3122 | { |
| 3123 | GCArray_T(Type *ptr) : _ptr(ptr) |
| 3124 | { |
| 3125 | } |
| 3126 | |
| 3127 | virtual ~GCArray_T() |
| 3128 | { |
| 3129 | delete[] _ptr; |
| 3130 | } |
| 3131 | |
| 3132 | private: |
| 3133 | Type *_ptr; |
| 3134 | }; |
| 3135 | |
| 3136 | /* base class for director exceptions */ |
| 3137 | class DirectorException { |
nothing calls this directly
no outgoing calls
no test coverage detected