]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - adaptormodel.h
New upstream version 2.9.22
[sven/vym.git] / adaptormodel.h
diff --git a/adaptormodel.h b/adaptormodel.h
deleted file mode 100644 (file)
index eeb61e6..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef ADAPTORModel_H
-#define ADAPTORModel_H
-
-#include <QtCore/QObject>
-#include <QtDBus/QtDBus>
-
-class VymModel;
-class QString;
-
-class AdaptorModel: public QDBusAbstractAdaptor
-{
-    Q_OBJECT
-    Q_CLASSINFO("D-Bus Interface", "org.insilmaril.vym.model.adaptor")
-
-private:
-       VymModel *model;
-
-public:
-    AdaptorModel(QObject *obj);
-    void setModel (VymModel *vm);
-
-public: // PROPERTIES
-    QString m_caption;
-    QString caption();
-    void setCaption(const QString &newCaption);
-
-public slots: // METHODS
-    QDBusVariant getCurrentModelID();
-    QDBusVariant branchCount();
-    QDBusVariant execute (const QString &s);
-    QDBusVariant errorLevel();
-    QDBusVariant errorDescription();
-    QDBusVariant listCommands();
-
-Q_SIGNALS: // SIGNALS
-    void crashed();
-};
-
-#endif