sipplugins/sippsipadapter/src/CSIPProfileRegistryObserver.cpp
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2002-2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Implements MSIPProfileRegistryObserver interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "CSIPProfileRegistryObserver.h"
       
    21 
       
    22 // ---------------------------------------------------------------------------
       
    23 // CSIPProfileRegistryObserver::CSIPProfileRegistryObserver
       
    24 // 
       
    25 // ---------------------------------------------------------------------------
       
    26 //
       
    27 CSIPProfileRegistryObserver::CSIPProfileRegistryObserver()
       
    28     {
       
    29     }
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // CSIPProfileRegistryObserver::ConstructL
       
    33 // 
       
    34 // ---------------------------------------------------------------------------
       
    35 //
       
    36 void CSIPProfileRegistryObserver::ConstructL()
       
    37     {
       
    38     }
       
    39 
       
    40 // ---------------------------------------------------------------------------
       
    41 // CSIPProfileRegistryObserver::NewLC
       
    42 // 
       
    43 // ---------------------------------------------------------------------------
       
    44 //
       
    45 CSIPProfileRegistryObserver* CSIPProfileRegistryObserver::NewLC()
       
    46     {
       
    47     CSIPProfileRegistryObserver* self = new ( ELeave ) 
       
    48         CSIPProfileRegistryObserver();
       
    49     CleanupStack::PushL( self );
       
    50     self->ConstructL();
       
    51     return self;
       
    52     }
       
    53 
       
    54 // ---------------------------------------------------------------------------
       
    55 // CSIPProfileRegistryObserver::NewL
       
    56 // 
       
    57 // ---------------------------------------------------------------------------
       
    58 //
       
    59 CSIPProfileRegistryObserver* CSIPProfileRegistryObserver::NewL()
       
    60     {
       
    61     CSIPProfileRegistryObserver* self = new ( ELeave ) 
       
    62         CSIPProfileRegistryObserver();
       
    63     CleanupStack::PushL( self );
       
    64     self->ConstructL();
       
    65     CleanupStack::Pop( self );
       
    66     return self;
       
    67     }
       
    68 
       
    69 // ---------------------------------------------------------------------------
       
    70 // Destructor.
       
    71 // ---------------------------------------------------------------------------
       
    72 CSIPProfileRegistryObserver::~CSIPProfileRegistryObserver()
       
    73    {
       
    74    }
       
    75 
       
    76 // ---------------------------------------------------------------------------
       
    77 // CSIPProfileRegistryObserver::ProfileRegistryEventOccurred.
       
    78 //
       
    79 // ---------------------------------------------------------------------------
       
    80 //
       
    81 void CSIPProfileRegistryObserver::ProfileRegistryEventOccurred( TUint32 
       
    82     /*aProfileId*/, TEvent /*aEvent*/ )
       
    83     {
       
    84     }
       
    85 
       
    86 // ---------------------------------------------------------------------------
       
    87 // CSIPProfileRegistryObserver::ProfileRegistryEventOccurred.
       
    88 //
       
    89 // ---------------------------------------------------------------------------
       
    90 //
       
    91 void CSIPProfileRegistryObserver::ProfileRegistryErrorOccurred( TUint32 
       
    92     /*aProfileId*/, TInt /*aError*/ )
       
    93     {
       
    94     }
       
    95 
       
    96 //  End of File