1#ifndef _DITTO_AUTHENTICATION_STATUS_OBSERVER_
2#define _DITTO_AUTHENTICATION_STATUS_OBSERVER_
4#include "AuthenticationStatus.hpp"
13class AuthenticationStatusObserver
15 public std::enable_shared_from_this<AuthenticationStatusObserver> {
16 friend class Authenticator;
19 void on_stop()
override;
20 std::weak_ptr<Authenticator> authenticator;
22 AuthenticationStatusObserver(
23 std::shared_ptr<Authenticator> authenticator,
Provides access to authentication information and methods for logging on to Ditto Cloud....
Definition Authenticator.hpp:27
Observer()
Constructs a new Observer.
Definition Observer.cpp:4
Provides info about the authentication status.
Definition AuthenticationStatus.hpp:10