X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=adaptormodel.h;fp=adaptormodel.h;h=0000000000000000000000000000000000000000;hb=d483bd8e6523c23c6f1d8908a2e0611c2bc9ff4f;hp=eeb61e65aa692f7f94f2dedd329469ab7f976db7;hpb=7dfa3fe589d1722d49681f42cdb0bf1e6efb5223;p=sven%2Fvym.git diff --git a/adaptormodel.h b/adaptormodel.h deleted file mode 100644 index eeb61e6..0000000 --- a/adaptormodel.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef ADAPTORModel_H -#define ADAPTORModel_H - -#include -#include - -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