Initial Commit.
[onlineservices] / googledocument.h
1 /*
2  * This file is part of Maemo 5 Office UI for KOffice
3  *
4  * Copyright (C) 2010 Manikandaprasad N C <maninc@gmail.com>.
5  *
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  */
23
24 #ifndef GOOGLEDOCUMENT_H
25 #define GOOGLEDOCUMENT_H
26
27 #include <QObject>
28
29 class GoogleDocument : public QObject
30 {
31 public:
32     GoogleDocument();
33
34     void setEtag(const QString & etag);
35     QString etag ();
36
37     void setId (const QString & id);
38     QString id ();
39
40     void setTitle (const QString & title);
41     QString title ();
42
43     void setAuthor (const QString & author);
44     QString author ();
45
46     void setDocumentType (const QString & docType);
47     QString documentType ();
48
49     void setDocumentUrl (const QString & url);
50     QString documentUrl ();
51
52 private:
53     QString m_etag;
54     QString m_id;
55     QString m_title;
56     QString m_author;
57     QString m_docType;
58     QString m_documetUrl;
59 };
60
61 #endif // GOOGLEDOCUMENT_H