Imported Upstream version 3.18.2
[platform/upstream/cmake.git] / Tests / RunCMake / Ninja / app_qt.cpp
1 #include <QObject>
2
3 class Mango : public QObject
4 {
5   Q_OBJECT
6 public:
7 Q_SIGNALS:
8   void eatFruit();
9 };
10
11 #include "app_qt.moc"