summaryrefslogtreecommitdiffabout
path: root/include/opkele/oauth.h
Side-by-side diff
Diffstat (limited to 'include/opkele/oauth.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/oauth.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/opkele/oauth.h b/include/opkele/oauth.h
new file mode 100644
index 0000000..14d0586
--- a/dev/null
+++ b/include/opkele/oauth.h
@@ -0,0 +1,22 @@
+#ifndef __OPKELE_OAUTH_H
+#define __OPKELE_OAUTH_H
+
+#include <string>
+
+namespace opkele {
+ namespace oauth {
+ using std::string;
+
+ struct token_t {
+ string key;
+ string secret;
+
+ token_t() { }
+ token_t(const string& k,const string& s)
+ : key(k), secret(s) { }
+ };
+
+ }
+}
+
+#endif /* __OPKELE_OAUTH_H */