obex/obexprotocol/obex/inc/obexnotifyhandlerclient.h
changeset 54 4dc88a4ac6f4
parent 52 866b4af7ffbe
child 57 f6055a57ae18
equal deleted inserted replaced
52:866b4af7ffbe 54:4dc88a4ac6f4
     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 OBEXNOTIFYHANDLERCLIENT_H
       
    17 #define OBEXNOTIFYHANDLERCLIENT_H
       
    18 
       
    19 /**
       
    20 @file
       
    21 @released
       
    22 @internalComponent
       
    23 */
       
    24 
       
    25 #include "obexnotifyhandlerbase.h"
       
    26 
       
    27 class CObexClient;
       
    28 /** Recieves notifications from transport.
       
    29 
       
    30 This handles MObexNotifyExtend functions that require knowledge
       
    31 that the CObex that owns this class is a CObexClient.
       
    32 */
       
    33 NONSHARABLE_CLASS(CObexNotifyHandlerClient) : public CObexNotifyHandlerBase
       
    34 	{
       
    35 public:
       
    36 	CObexNotifyHandlerClient(CObexClient& aObex);
       
    37 
       
    38 private:
       
    39 	virtual void SignalPacketProcessEvent(TObexPacketProcessEvent aEvent);
       
    40 	};
       
    41 	
       
    42 #endif // OBEXNOTIFYHANDLERCLIENT_H