From bd7387eb90edc07de0f7039fc92d0b18479eca5a Mon Sep 17 00:00:00 2001 From: keita Date: Sat, 23 Apr 2022 18:11:27 +0900 Subject: [PATCH] include guard --- src/cocoatweet/api/oauth1/authenticate.h | 5 +++++ src/cocoatweet/api/oauth1/invalidateToken.h | 6 ++++++ src/cocoatweet/api/oauth2/invalidateToken.h | 6 ++++++ src/cocoatweet/authentication/oauth.h | 4 ++-- src/cocoatweet/authentication/plain.h | 4 ++-- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/cocoatweet/api/oauth1/authenticate.h b/src/cocoatweet/api/oauth1/authenticate.h index e69de29..473d86b 100644 --- a/src/cocoatweet/api/oauth1/authenticate.h +++ b/src/cocoatweet/api/oauth1/authenticate.h @@ -0,0 +1,5 @@ +#ifndef COCOATWEET_API_OAUTH1_AUTHENTICATE_H_ +#define COCOATWEET_API_OAUTH1_AUTHENTICATE_H_ + + +#endif \ No newline at end of file diff --git a/src/cocoatweet/api/oauth1/invalidateToken.h b/src/cocoatweet/api/oauth1/invalidateToken.h index e69de29..be8a8f0 100644 --- a/src/cocoatweet/api/oauth1/invalidateToken.h +++ b/src/cocoatweet/api/oauth1/invalidateToken.h @@ -0,0 +1,6 @@ +#ifndef COCOATWEET_API_OAUTH1_INVALIDATETOKEN_H_ +#define COCOATWEET_API_OAUTH1_INVALIDATETOKEN_H_ + + + +#endif \ No newline at end of file diff --git a/src/cocoatweet/api/oauth2/invalidateToken.h b/src/cocoatweet/api/oauth2/invalidateToken.h index e69de29..5872d9a 100644 --- a/src/cocoatweet/api/oauth2/invalidateToken.h +++ b/src/cocoatweet/api/oauth2/invalidateToken.h @@ -0,0 +1,6 @@ +#ifndef COCOATWEET_API_OAUTH2_INVALIDATETOKEN_H_ +#define COCOATWEET_API_OAUTH2_INVALIDATETOKEN_H_ + + + +#endif \ No newline at end of file diff --git a/src/cocoatweet/authentication/oauth.h b/src/cocoatweet/authentication/oauth.h index 4cec920..ca65f47 100644 --- a/src/cocoatweet/authentication/oauth.h +++ b/src/cocoatweet/authentication/oauth.h @@ -1,5 +1,5 @@ -#ifndef COCOATWEET_OAUTH_OAUTH_H_ -#define COCOATWEET_OAUTH_OAUTH_H_ +#ifndef COCOATWEET_AUTHENTICATION_OAUTH_H_ +#define COCOATWEET_AUTHENTICATION_OAUTH_H_ #include #include diff --git a/src/cocoatweet/authentication/plain.h b/src/cocoatweet/authentication/plain.h index e83eb82..64fe5df 100644 --- a/src/cocoatweet/authentication/plain.h +++ b/src/cocoatweet/authentication/plain.h @@ -1,5 +1,5 @@ -#ifndef COCOATWEET_AUTHENTICATION_PLAIN_H -#define COCOATWEET_AUTHENTICATION_PLAIN_H +#ifndef COCOATWEET_AUTHENTICATION_PLAIN_H_ +#define COCOATWEET_AUTHENTICATION_PLAIN_H_ #include