zeroconf/server/src/CEngSettingsObserver.cpp
changeset 14 da856f45b798
equal deleted inserted replaced
12:78fbd574edf4 14:da856f45b798
       
     1 /*
       
     2 * Copyright (c) 2010 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: 
       
    15 *
       
    16 */
       
    17 /*
       
    18  * CEngSettingsObserver.cpp
       
    19  *
       
    20  *  Created on: Jun 17, 2010
       
    21  *      Author: lachamar
       
    22  */
       
    23 
       
    24 #include "cengsettingsobserver.h"
       
    25 
       
    26 
       
    27 
       
    28 CEngSettingsObserver*  CEngSettingsObserver::NewLC()
       
    29     {
       
    30     CEngSettingsObserver* self = new (ELeave)CEngSettingsObserver();
       
    31     CleanupStack::PushL(self);
       
    32     self->ConstructL();
       
    33     CleanupStack::Pop();
       
    34     return self;
       
    35     }
       
    36 
       
    37 
       
    38 CEngSettingsObserver::CEngSettingsObserver()
       
    39     {
       
    40     
       
    41     }
       
    42 
       
    43 CEngSettingsObserver::~CEngSettingsObserver()
       
    44     {
       
    45     
       
    46     }
       
    47 
       
    48 
       
    49 void CEngSettingsObserver::ConstructL()
       
    50     {
       
    51     
       
    52     }
       
    53 
       
    54 void CEngSettingsObserver::PowerStateChanged( TBTPowerStateValue aState )
       
    55     {
       
    56     
       
    57     }
       
    58 
       
    59 void CEngSettingsObserver::VisibilityModeChanged( TBTVisibilityMode aState )
       
    60     {
       
    61     
       
    62     }
       
    63