williamr@4: /* williamr@4: * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@4: * All rights reserved. williamr@4: * This component and the accompanying materials are made available williamr@4: * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members williamr@4: * which accompanies this distribution, and is available williamr@4: * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". williamr@4: * williamr@4: * Initial Contributors: williamr@4: * Nokia Corporation - initial contribution. williamr@4: * williamr@4: * Contributors: williamr@4: * williamr@4: * Description: williamr@4: * williamr@4: */ williamr@4: williamr@4: williamr@4: /** williamr@4: @file MUCCTransport.h williamr@4: */ williamr@4: williamr@4: #ifndef __MUCCTRANSPORT_H__ williamr@4: #define __MUCCTRANSPORT_H__ williamr@4: williamr@4: class MUCCTransport williamr@4: { williamr@4: public: williamr@4: virtual ~MUCCTransport() {} williamr@4: virtual TInt InitialiseL() = 0; williamr@4: virtual TInt ConnectL( TDesC *aRemoteHost ) = 0; williamr@4: virtual TInt RequestSend( TDesC8 *aData, const TUint aLength ) = 0; williamr@4: virtual TInt RequestReceive( TPtr8 *aRecvBufferPtr, TUint aByteCount ) = 0; williamr@4: virtual TInt Disconnect( void ) = 0; williamr@4: virtual TInt Release( void ) = 0; williamr@4: virtual TText8 *Error( void ) = 0; williamr@4: }; williamr@4: williamr@4: #endif // __MUCCTRANSPORT_H__