hti/HtiServicePlugins/HtiIpProxyServicePlugin/IPProxyEngine/Inc/MSocketWriter.h
branchRCL_3
changeset 59 8ad140f3dd41
parent 0 a03f92240627
equal deleted inserted replaced
49:7fdc9a71d314 59:8ad140f3dd41
       
     1 /*
       
     2 * Copyright (c) 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:  MSocketWriter interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MSOCKETWRITER_H
       
    21 #define MSOCKETWRITER_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32def.h>
       
    25 
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  MSocketWriter interface.
       
    31 */
       
    32 NONSHARABLE_CLASS( MSocketWriter )
       
    33     {
       
    34 
       
    35     public: // Abstract functions
       
    36 
       
    37         /**
       
    38         * Writes data to socket.
       
    39         * @param aData Data to be written.
       
    40         */
       
    41         virtual void WriteL( const TDesC8& aData ) = 0;
       
    42 
       
    43     };
       
    44 
       
    45 #endif      // MSOCKETWRITER_H
       
    46 
       
    47 // End of File