changes for formeego, do not use
[googlelatitude] / libkqoauth / kqoauthglobals.h
1 /**
2  * KQOAuth - An OAuth authentication library for Qt.
3  *
4  * Author: Johan Paul (johan.paul@d-pointer.com)
5  *         http://www.d-pointer.com
6  *
7  *  KQOAuth is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU Lesser General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  KQOAuth 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 Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public License
18  *  along with KQOAuth.  If not, see <http://www.gnu.org/licenses/>.
19  */
20 #ifndef KQOAUTHGLOBALS_H
21 #define KQOAUTHGLOBALS_H
22
23 #include <QtCore/qglobal.h>
24
25 #if defined(KQOAUTH)
26 #  define KQOAUTH_EXPORT Q_DECL_EXPORT
27 #else
28 #  define KQOAUTH_EXPORT Q_DECL_IMPORT
29 #endif
30
31 //////////// Static constant definitions ///////////
32 const QString OAUTH_KEY_CONSUMER("oauth_consumer");
33 const QString OAUTH_KEY_CONSUMER_KEY("oauth_consumer_key");
34 const QString OAUTH_KEY_TOKEN("oauth_token");
35 const QString OAUTH_KEY_TOKEN_SECRET("oauth_token_secret");
36 const QString OAUTH_KEY_SIGNATURE_METHOD("oauth_signature_method");
37 const QString OAUTH_KEY_TIMESTAMP("oauth_timestamp");
38 const QString OAUTH_KEY_NONCE("oauth_nonce");
39 const QString OAUTH_KEY_SIGNATURE("oauth_signature");
40 const QString OAUTH_KEY_CALLBACK("oauth_callback");
41 const QString OAUTH_KEY_VERIFIER("oauth_verifier");
42 const QString OAUTH_KEY_VERSION("oauth_version");
43
44 #endif // KQOAUTHGLOBALS_H