limit subtask list
[Sak.git] / gmailstorage / gmailpyinterface.h
blob78824f8781fb370637f281baa5bb431da736ab19
1 #ifndef GMAILPYINTERFACE_H
2 #define GMAILPYINTERFACE_H
4 #include <QString>
5 #include <QStringList>
6 #include "gmailinterface.h"
8 class GmailPyInterface : public GmailInterface
10 public:
11 GmailPyInterface();
12 ~GmailPyInterface();
13 bool isValid() { return m_gs != 0; }
14 void storeTaskFiles(const QStringList& filePaths);
15 bool login();
16 // clear cached data
17 bool forceLogin();
18 QStringList fetchLatestTasks() { return QStringList(); };
19 private:
20 struct _object* m_gs;
21 struct _object* m_userObj;
22 struct _object* m_passObj;
25 #endif // GMAILPYINTERFACE_H