obex/obexprotocol/obex/test/tobex/serverhandler.h
changeset 0 d0791faffa3f
equal deleted inserted replaced
-1:000000000000 0:d0791faffa3f
       
     1 // Copyright (c) 2005-2009 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 //
       
    15 
       
    16 #ifndef _SERVERHANDLER_H
       
    17 #define _SERVERHANDLER_H
       
    18 
       
    19 #include <es_sock.h>
       
    20 #include <e32test.h>
       
    21 #include <es_prot.h>
       
    22 #include <e32cons.h>
       
    23 #include <obex.h>
       
    24 #include <btmanclient.h>
       
    25 #include <obex/internal/obexinternalheader.h>
       
    26 #include <obex/internal/obexinternalconstants.h>
       
    27 #include <btsdp.h>
       
    28 #include <obexfinalpacketobserver.h>
       
    29 
       
    30 class CActiveConsole;
       
    31 
       
    32 class CObexServerHandler : public CObexServerHandlerBase
       
    33 //-----------------------------------------------------------
       
    34 	{
       
    35 public:
       
    36 	// Construction
       
    37 	static CObexServerHandler* NewL(CActiveConsole* aParent, TTransport aTransport);
       
    38 	void ConstructL(TTransport aTransport);
       
    39 	
       
    40 	~CObexServerHandler();
       
    41 
       
    42 private:
       
    43 	CObexServerHandler(CActiveConsole* aParent);
       
    44 	};
       
    45 
       
    46 
       
    47 #endif // _SERVERHANDLER_H