diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-11-25 14:12:04 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2016-11-29 16:16:33 (GMT) |
commit | c4d4becf8b79f68534eb8320ccd63218afa4ca31 (patch) | |
tree | 8b1bb531cfdb586c6c2729712919f435495bab3a /Tests/QtAutogen/complex/yaf_p.h | |
parent | 2599f5d64b6d81967de9ba6f11420ec7815f618d (diff) | |
download | CMake-c4d4becf8b79f68534eb8320ccd63218afa4ca31.zip CMake-c4d4becf8b79f68534eb8320ccd63218afa4ca31.tar.gz CMake-c4d4becf8b79f68534eb8320ccd63218afa4ca31.tar.bz2 |
QtAutogen tests: Move the complex test case to a subdirectory
Diffstat (limited to 'Tests/QtAutogen/complex/yaf_p.h')
-rw-r--r-- | Tests/QtAutogen/complex/yaf_p.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Tests/QtAutogen/complex/yaf_p.h b/Tests/QtAutogen/complex/yaf_p.h new file mode 100644 index 0000000..ea5eed6 --- /dev/null +++ b/Tests/QtAutogen/complex/yaf_p.h @@ -0,0 +1,19 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef YAF_P_H +#define YAF_P_H + +#include <QObject> + +#include <stdio.h> + +class YafP : public QObject +{ + Q_OBJECT +public: + YafP() {} +public slots: + void doYafP() { printf("I am yet another file !\n"); } +}; + +#endif |