#ifndef ORGANIZERADAPTER_H #define ORGANIZERADAPTER_H #include "libpebble/calendarevent.h" #include #include #include #include QTORGANIZER_USE_NAMESPACE class OrganizerAdapter : public QObject { Q_OBJECT public: explicit OrganizerAdapter(QObject *parent = 0); QList items() const; public slots: void refresh(); signals: void itemsChanged(const QList &items); private: QOrganizerManager *m_manager; QList m_items; }; #endif // ORGANIZERADAPTER_H