A test class for explicitly deleted special member functions. More...
| Header: | #include <testclass.h> |
| ExplicitlyDeletedTest() | |
| ExplicitlyDeletedTest(const QDocTests::ExplicitlyDeletedTest &other) | |
| ExplicitlyDeletedTest(QDocTests::ExplicitlyDeletedTest &&other) | |
| QDocTests::ExplicitlyDeletedTest & | operator=(QDocTests::ExplicitlyDeletedTest &&other) |
| QDocTests::ExplicitlyDeletedTest & | operator=(const QDocTests::ExplicitlyDeletedTest &other) |
This class tests that QDoc correctly detects and displays functions marked with = delete.
[constexpr noexcept default] ExplicitlyDeletedTest::ExplicitlyDeletedTest()Default constructor.
[delete] ExplicitlyDeletedTest::ExplicitlyDeletedTest(const QDocTests::ExplicitlyDeletedTest &other)Copy constructor (deleted).
[delete] ExplicitlyDeletedTest::ExplicitlyDeletedTest(QDocTests::ExplicitlyDeletedTest &&other)Move constructor (deleted).
[delete] QDocTests::ExplicitlyDeletedTest &ExplicitlyDeletedTest::operator=(QDocTests::ExplicitlyDeletedTest &&other)Move assigns other to this object (deleted).
[delete] QDocTests::ExplicitlyDeletedTest &ExplicitlyDeletedTest::operator=(const QDocTests::ExplicitlyDeletedTest &other)Copy assigns other to this object (deleted).