/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/python/smartptr/smartptr.h
12 строк
231 B
Dave Beazley
The great merge
01 дек 2002, 01:01
01 дек 2002, 01:01
12a43ed
Код
Авторство
О чём код?
template<class T> class SmartPtr { public: SmartPtr(T *realPtr = 0) { pointee = realPtr; } T *operator->() const { return pointee; } T &operator*() const { return *pointee; } private: T *pointee; };