obex/obexprotocol/obex/inc/obexsetpathdata.h
changeset 54 4dc88a4ac6f4
parent 52 866b4af7ffbe
child 57 f6055a57ae18
equal deleted inserted replaced
52:866b4af7ffbe 54:4dc88a4ac6f4
     1 // Copyright (c) 1997-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 /**
       
    17  @file
       
    18  @internalComponent
       
    19 */
       
    20 
       
    21 #ifndef __OBEXSETPATHDATA_H__
       
    22 #define __OBEXSETPATHDATA_H__
       
    23 
       
    24 #include <e32def.h>
       
    25 #include <obex/internal/obexdata.h>
       
    26 
       
    27 /**
       
    28 Contains the non-standard set-path information in set-path request packets
       
    29 @internalComponent
       
    30 */
       
    31 NONSHARABLE_CLASS(TObexSetPathData) : public TObexData
       
    32 	{
       
    33 public:
       
    34 	TObexSetPathData ();
       
    35 protected:
       
    36 	// Implementation of TObexData functions
       
    37 	virtual TUint16 DoTotalSize () const;	//< Total size of this data element
       
    38 	virtual TUint16 ParseIn (TUint8* aSource, const TUint16 aMaxSize);
       
    39 	virtual TUint16 WriteOut (TUint8* aDest, const TUint16 aMaxSize) const;
       
    40 public:
       
    41 	TUint8 iFlags;
       
    42 	TUint8 iConstants;
       
    43 	};
       
    44 
       
    45 #endif // __OBEXSETPATHDATA_H__