11 lines
271 B
C++
11 lines
271 B
C++
#ifndef COCOATWEET_AUTHENTICATION_PLAIN_H
|
|
#define COCOATWEET_AUTHENTICATION_PLAIN_H
|
|
|
|
#include <cocoatweet/authentication/authenticator.h>
|
|
|
|
namespace CocoaTweet::Authentication {
|
|
class Plain : public AuthenticatorBase {};
|
|
} // namespace CocoaTweet::Authentication
|
|
|
|
#endif
|