epoc32/include/sipconcreteprofileobserver.h
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 2fe1408b6811
child 4 837f303aceeb
     1.1 --- a/epoc32/include/sipconcreteprofileobserver.h	Tue Mar 16 16:12:26 2010 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,102 +0,0 @@
     1.4 -/*
     1.5 -* Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 -* All rights reserved.
     1.7 -* This component and the accompanying materials are made available
     1.8 -* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     1.9 -* which accompanies this distribution, and is available
    1.10 -* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.11 -*
    1.12 -* Initial Contributors:
    1.13 -* Nokia Corporation - initial contribution.
    1.14 -*
    1.15 -* Contributors:
    1.16 -*
    1.17 -* Description:
    1.18 -* Name        : sipconcreteprofileobserver.h
    1.19 -* Part of     : SIP Profile Client
    1.20 -* Interface   : private
    1.21 -* The observer class that must be implemented by users of 
    1.22 -* CSIPConcreteProfile
    1.23 -* Version     : 1.0
    1.24 -*
    1.25 -*/
    1.26 -
    1.27 -
    1.28 -
    1.29 -#ifndef MSIPCONCRETEPROFILEOBSERVER_H
    1.30 -#define MSIPCONCRETEPROFILEOBSERVER_H
    1.31 -
    1.32 -//  INCLUDES
    1.33 -
    1.34 -#include <e32base.h>
    1.35 -
    1.36 -// FORWARD DECLARATIONS
    1.37 -
    1.38 -
    1.39 -// CLASS DECLARATION
    1.40 -/**
    1.41 -* @publishedAll
    1.42 -* @released
    1.43 -*
    1.44 -* Observer class to be implemented by users of CSIPConcreteProfile
    1.45 -* It provides event notifications related to profiles.
    1.46 -*/
    1.47 -class MSIPConcreteProfileObserver
    1.48 -    {
    1.49 -    public:
    1.50 -
    1.51 -        /**
    1.52 -        * SIP profile registration status changed event
    1.53 -        * Event is send to those observers, who have the
    1.54 -        * corresponding profile instantiated.
    1.55 -        * @param aProfileId id of profile which registration 
    1.56 -        *        status has been changed.
    1.57 -        * @param aStatus new status of the profile
    1.58 -        * @param aStatusId id related to registration
    1.59 -        */
    1.60 -        virtual void RegistrationStatusChangedL(
    1.61 -            TUint32 aProfileId, 
    1.62 -            TInt aStatus,
    1.63 -            TUint32 aStatusId) = 0;
    1.64 -
    1.65 -        /** 
    1.66 -        * SIP profile creation event.
    1.67 -        * Event is send to all observers.
    1.68 -        * @param aProfileId id of new SIP Profile
    1.69 -        */
    1.70 -        virtual void AddedL(TUint32 aProfileId) = 0;
    1.71 -
    1.72 -        /**
    1.73 -        * SIP profile destruction event.
    1.74 -        * Event is send to those observers, who have the
    1.75 -        * corresponding profile instantiated.
    1.76 -        * @param aProfileId id of profile which was destroyed
    1.77 -        */        
    1.78 -        virtual void RemovedL(TUint32 aProfileId) = 0;
    1.79 -
    1.80 -        /** 
    1.81 -        * SIP profile information update event
    1.82 -        * Event is send to those observers, who have the
    1.83 -        * corresponding profile instantiated.
    1.84 -        * @param aProfileId id of updated SIP Profile
    1.85 -        * @param aSize size of updated SIP Profile
    1.86 -        */
    1.87 -        virtual void UpdatedL(TUint32 aProfileId, TUint aSize) = 0;
    1.88 -
    1.89 -        /**
    1.90 -        * An asynchronous error has occurred related to SIP profile
    1.91 -        * Event is send to those observers, who have the
    1.92 -        * corresponding profile instantiated.
    1.93 -        * @param aProfileId the id of failed profile 
    1.94 -        * @param aStatus status indicating if error occurred
    1.95 -        *          during registering (ERegistrationInProgress)
    1.96 -        *          or deregistering (EUnregistrationInProgress)
    1.97 -        * @param aError a error code
    1.98 -        */
    1.99 -        virtual void ErrorOccurredL(
   1.100 -            TUint32 aProfileId,
   1.101 -            TInt aStatus,
   1.102 -            TInt aError) = 0;
   1.103 -    };
   1.104 -
   1.105 -#endif // MSIPCONCRETEPROFILEOBSERVER_H