code format

This commit is contained in:
keita
2022-04-23 18:04:03 +09:00
parent 136700d154
commit 611cfc2e31
52 changed files with 391 additions and 350 deletions
+8 -8
View File
@@ -5,18 +5,18 @@
#include <vector>
#include <utility>
namespace CocoaTweet::Authentication{
class Auth: public groupInterface {
namespace CocoaTweet::Authentication {
class Auth : public groupInterface {
public:
enum AuthType { OAuth, Bearer };
Auth();
Auth(Key _key);
authorize(const bool app_only);
Auth();
Auth(Key _key);
authorize(const bool app_only);
private:
Key key_;
}
Key key_;
}
} // namespace CocoaTweet::Authentication
#endif