1#ifndef DITTO_AUTHENTICATION_STATUS_OBSERVER_H
2#define DITTO_AUTHENTICATION_STATUS_OBSERVER_H
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:34
Observer()
Constructs a new Observer.
Namespace for the Ditto C++ SDK types and functions.
Definition AbstractDocumentPath.hpp:19
Provides info about the authentication status.
Definition AuthenticationStatus.hpp:10