tracesrv/tracecore/btrace_handler/inc/TraceCoreOstConnectionIf.h
changeset 56 aa2539c91954
equal deleted inserted replaced
54:a151135b0cf9 56:aa2539c91954
       
     1 // Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Trace Core
       
    15 // 
       
    16 
       
    17 #ifndef _TRACECOREOSTCONNECTIONIF_H_
       
    18 #define _TRACECOREOSTCONNECTIONIF_H_
       
    19 
       
    20 #include <kernel/kernel.h>
       
    21 
       
    22 
       
    23 /**
       
    24 
       
    25 Used in TraceCoreOstLdd for sending message (as callback) to registered component
       
    26 
       
    27 */
       
    28 class MTraceCoreOstConnectionIf
       
    29     {
       
    30     public:
       
    31     
       
    32     /**
       
    33      * TxMessage
       
    34      *  
       
    35      * Message from TraceCore to OST connection
       
    36      * @param aDes Message to be sent
       
    37      */
       
    38     virtual void TxMessage( const TDesC8& aDes ) = 0;
       
    39     
       
    40     };
       
    41 
       
    42 #endif /*_TRACECOREOSTCONNECTIONIF_H_*/
       
    43