summaryrefslogtreecommitdiffstats
path: root/sample-qml/calledbyqml.h
diff options
context:
space:
mode:
authorBocklage, Jens <Jens_Bocklage@mentor.com>2016-12-15 05:50:29 +0100
committerBocklage, Jens <Jens_Bocklage@mentor.com>2016-12-15 05:55:33 +0100
commita4f5c7d97fcbb97ece05cfbca38fb1963ab11377 (patch)
tree9436a9fadfc871140cd460939d9c084b198b6b26 /sample-qml/calledbyqml.h
parentf775180abd5e6adb58763bec74aa250bf4657341 (diff)
Delete unneeded files
- sample-qml no longer needed - widgets no longer needed - images replaced by new HMI before Signed-off-by: Bocklage, Jens <Jens_Bocklage@mentor.com>
Diffstat (limited to 'sample-qml/calledbyqml.h')
-rw-r--r--sample-qml/calledbyqml.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/sample-qml/calledbyqml.h b/sample-qml/calledbyqml.h
deleted file mode 100644
index fbb5ef5..0000000
--- a/sample-qml/calledbyqml.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef CALLEDBYQML_H
-#define CALLEDBYQML_H
-#include <QObject>
-
-class CalledByQml : public QObject
-{
- Q_OBJECT
-
-public:
- explicit CalledByQml(QObject *parent = 0);
- Q_INVOKABLE int consoleout();
- Q_INVOKABLE int showup();
-
-signals:
-
-public slots:
- void refresh() {
- qDebug("Called the C++ slot");
- }
-};
-
-#endif // CALLEDBYQML_H