#ifndef __OPKELE_OAUTH_H #define __OPKELE_OAUTH_H #include 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 */