![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <QIODevice>
#include <QScopedPointer>
#include <QScopedPointerArrayDeleter>
#include <QScopedPointerPodDeleter>
Go to the source code of this file.
Classes | |
class | MyClass |
[5] More... | |
class | MySubClass |
class | repetition::MyClass |
class | repetition::MySubClass |
class | class_repetition::MyClass |
class | class_repetition::MyPrivateClass |
[4] More... | |
class | MyCustomClass |
struct | ScopedPointerCustomDeleter |
Namespaces | |
namespace | repetition |
[3] | |
namespace | class_repetition |
Functions | |
QIODevice * | handsOverOwnership () |
void | process (QIODevice *device) |
void | myFunction (bool useSubClass) |
[0] | |
void | repetition::myFunction (bool useSubClass) |
[1] | |
void | myCustomDeallocator (MyCustomClass *pointer) |
QScopedPointer< MyCustomClass, ScopedPointerCustomDeleter > | customPointer (new MyCustomClass) |
Variables | |
int | m_value |
QScopedPointer< int, QScopedPointerArrayDeleter< int > > | arrayPointer (new int[42]) |
[5] | |
QScopedPointer< int, QScopedPointerPodDeleter > | podPointer (reinterpret_cast< int * >(malloc(42))) |
QScopedPointer< MyCustomClass, ScopedPointerCustomDeleter > customPointer | ( | new | MyCustomClass | ) |
QIODevice * handsOverOwnership | ( | ) |
void myCustomDeallocator | ( | MyCustomClass * | pointer | ) |
Definition at line 127 of file src_corelib_tools_qscopedpointer.cpp.
Referenced by ScopedPointerCustomDeleter::cleanup().
void myFunction | ( | bool | useSubClass | ) |
[0]
Definition at line 17 of file src_corelib_tools_qscopedpointer.cpp.
References MyClass::MyClass(), and m_value.
QScopedPointer< int, QScopedPointerArrayDeleter< int > > arrayPointer | ( | new int | [42] | ) |
[5]
int m_value |
Definition at line 14 of file src_corelib_tools_qscopedpointer.cpp.
Referenced by myFunction(), and repetition::myFunction().
QScopedPointer< int, QScopedPointerPodDeleter > podPointer | ( | reinterpret_cast< int * > | malloc(42) | ) |