You.i Engine
YiAbstractDeleter.h
Go to the documentation of this file.
1 // © You i Labs Inc. 2000-2017. All rights reserved.
2 #ifndef _YI_ABSTRACT_DELETER_H_
3 #define _YI_ABSTRACT_DELETER_H_
4 
5 #include "smartptr/YiDeleter.h"
6 
19 template <typename YI_RAW_PTR>
21 {
22 public:
23  CYIAbstractDeleter (YI_RAW_PTR *pPtr);
24  virtual ~CYIAbstractDeleter();
25 
26 protected:
27 
28  YI_RAW_PTR *m_pPtr;
29 };
30 
33 #include "smartptr/YiAbstractDeleter.inl"
34 
35 #endif /* _YI_ABSTRACT_DELETER_H_ */
YI_RAW_PTR * m_pPtr
Definition: YiAbstractDeleter.h:28
CYIAbstractDeleter(YI_RAW_PTR *pPtr)
Definition: YiAbstractDeleter.h:20
virtual ~CYIAbstractDeleter()
Definition: YiDeleter.h:17