nettools/conntest/Engine/QosObserver.cpp
changeset 0 857a3e953887
equal deleted inserted replaced
-1:000000000000 0:857a3e953887
       
     1 /*
       
     2 * Copyright (c) 2002-2009 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:  Implementation of class CQosObserver.
       
    15 *
       
    16 */
       
    17 
       
    18 // INCLUDE FILES
       
    19 #include "QosObserver.h"
       
    20 #include "UINotify.h"
       
    21 
       
    22 
       
    23 // ================= MEMBER FUNCTIONS =========================================
       
    24 
       
    25 
       
    26 // ----------------------------------------------------------------------------
       
    27 // CQosObserver::CQosObserver(...)
       
    28 // Constructor
       
    29 // ----------------------------------------------------------------------------
       
    30 //
       
    31 CQosObserver::CQosObserver(MUINotify& aConsole)
       
    32 : iConsole(aConsole)
       
    33 {
       
    34 }
       
    35 
       
    36 // ----------------------------------------------------------------------------
       
    37 // CQosObserver::~CQosObserver()
       
    38 // Destructor
       
    39 // ----------------------------------------------------------------------------
       
    40 //
       
    41 CQosObserver::~CQosObserver()
       
    42 {
       
    43 }
       
    44 
       
    45 
       
    46 // ---------------------------------------------------------
       
    47 // CQosObserver::Event(const CQoSEventBase& aQosEvent)
       
    48 // QoS event receiver.
       
    49 // ---------------------------------------------------------
       
    50 //
       
    51 void CQosObserver::Event(const CQoSEventBase& aQosEvent)
       
    52 {
       
    53     iConsole.PrintNotify(_L("KK"));
       
    54 }
       
    55 
       
    56