diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-12-31 09:25:38 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-01-10 11:49:16 (GMT) |
commit | 8dbdd3e726ead25c179e6eb4ffab212a1db3aba8 (patch) | |
tree | 25955cdfe99ed04ed2ceaa62d5bc074533b2dfe1 /Tests/QtAutogen/skipSource | |
parent | 0699760d5c8b644242ddd4ac6d07d8c4c68f2b94 (diff) | |
download | CMake-8dbdd3e726ead25c179e6eb4ffab212a1db3aba8.zip CMake-8dbdd3e726ead25c179e6eb4ffab212a1db3aba8.tar.gz CMake-8dbdd3e726ead25c179e6eb4ffab212a1db3aba8.tar.bz2 |
AUTOGEN: Tests: AUTOMOC SKIP_AUTOMOC and SKIP_AUTOGEN test
Diffstat (limited to 'Tests/QtAutogen/skipSource')
-rw-r--r-- | Tests/QtAutogen/skipSource/qItemA.cpp | 5 | ||||
-rw-r--r-- | Tests/QtAutogen/skipSource/qItemA.hpp | 13 | ||||
-rw-r--r-- | Tests/QtAutogen/skipSource/qItemB.cpp | 5 | ||||
-rw-r--r-- | Tests/QtAutogen/skipSource/qItemB.hpp | 13 | ||||
-rw-r--r-- | Tests/QtAutogen/skipSource/qItemC.cpp | 5 | ||||
-rw-r--r-- | Tests/QtAutogen/skipSource/qItemC.hpp | 13 |
6 files changed, 54 insertions, 0 deletions
diff --git a/Tests/QtAutogen/skipSource/qItemA.cpp b/Tests/QtAutogen/skipSource/qItemA.cpp new file mode 100644 index 0000000..522c2c7 --- /dev/null +++ b/Tests/QtAutogen/skipSource/qItemA.cpp @@ -0,0 +1,5 @@ +#include "qItemA.hpp" + +void QItemA::go() +{ +} diff --git a/Tests/QtAutogen/skipSource/qItemA.hpp b/Tests/QtAutogen/skipSource/qItemA.hpp new file mode 100644 index 0000000..d295faf --- /dev/null +++ b/Tests/QtAutogen/skipSource/qItemA.hpp @@ -0,0 +1,13 @@ +#ifndef QITEMA_HPP +#define QITEMA_HPP + +#include <QObject> + +class QItemA : public QObject +{ + Q_OBJECT + Q_SLOT + void go(); +}; + +#endif diff --git a/Tests/QtAutogen/skipSource/qItemB.cpp b/Tests/QtAutogen/skipSource/qItemB.cpp new file mode 100644 index 0000000..636e15d --- /dev/null +++ b/Tests/QtAutogen/skipSource/qItemB.cpp @@ -0,0 +1,5 @@ +#include "qItemB.hpp" + +void QItemB::go() +{ +} diff --git a/Tests/QtAutogen/skipSource/qItemB.hpp b/Tests/QtAutogen/skipSource/qItemB.hpp new file mode 100644 index 0000000..1775915 --- /dev/null +++ b/Tests/QtAutogen/skipSource/qItemB.hpp @@ -0,0 +1,13 @@ +#ifndef QITEMB_HPP +#define QITEMB_HPP + +#include <QObject> + +class QItemB : public QObject +{ + Q_OBJECT + Q_SLOT + void go(); +}; + +#endif diff --git a/Tests/QtAutogen/skipSource/qItemC.cpp b/Tests/QtAutogen/skipSource/qItemC.cpp new file mode 100644 index 0000000..700abd6 --- /dev/null +++ b/Tests/QtAutogen/skipSource/qItemC.cpp @@ -0,0 +1,5 @@ +#include "qItemC.hpp" + +void QItemC::go() +{ +} diff --git a/Tests/QtAutogen/skipSource/qItemC.hpp b/Tests/QtAutogen/skipSource/qItemC.hpp new file mode 100644 index 0000000..f06bda2 --- /dev/null +++ b/Tests/QtAutogen/skipSource/qItemC.hpp @@ -0,0 +1,13 @@ +#ifndef QITEMC_HPP +#define QITEMC_HPP + +#include <QObject> + +class QItemC : public QObject +{ + Q_OBJECT + Q_SLOT + void go(); +}; + +#endif |