michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #pragma once michael@0: michael@0: #include "CC_Common.h" michael@0: #include "ECC_Types.h" michael@0: michael@0: namespace CSF michael@0: { michael@0: /** michael@0: * These callbacks relate to CallControlManager's "value add" features relating to authentication, michael@0: * configuration, setup, service health and management of SIP. michael@0: * michael@0: * They do not relate to call control - see also CC_Observer. michael@0: */ michael@0: class ECC_API ECC_Observer michael@0: { michael@0: public: michael@0: virtual void onAvailablePhoneEvent (AvailablePhoneEventType::AvailablePhoneEvent event, michael@0: const PhoneDetailsPtr availablePhoneDetails) = 0; michael@0: michael@0: virtual void onAuthenticationStatusChange (AuthenticationStatusEnum::AuthenticationStatus) = 0; michael@0: virtual void onConnectionStatusChange(ConnectionStatusEnum::ConnectionStatus status) = 0; michael@0: }; michael@0: }