summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/AutogenOriginDependsOff/a_qt.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutogen/AutogenOriginDependsOff/a_qt.hpp')
-rw-r--r--Tests/QtAutogen/AutogenOriginDependsOff/a_qt.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/Tests/QtAutogen/AutogenOriginDependsOff/a_qt.hpp b/Tests/QtAutogen/AutogenOriginDependsOff/a_qt.hpp
new file mode 100644
index 0000000..e2387ee
--- /dev/null
+++ b/Tests/QtAutogen/AutogenOriginDependsOff/a_qt.hpp
@@ -0,0 +1,25 @@
+#ifndef A_QT_HPP
+#define A_QT_HPP
+
+#include <QObject>
+#include <config.hpp>
+#include <string>
+
+namespace a_qt {
+
+/// @brief A header local QObject based class
+class Header_QObject : public QObject
+{
+ Q_OBJECT
+public:
+ Header_QObject() {}
+ ~Header_QObject() {}
+
+ std::string str;
+};
+
+/// @brief Function that returns the content of mocs_compilation.cpp
+extern std::string mocs_compilation();
+}
+
+#endif