videofeeds/utils/inc/TIptvUint32StreamObject.h
changeset 0 96612d01cf9f
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     1 /*
       
     2 * Copyright (c) 2006 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 the License "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:    This class was defined to be able to use RIptvClientSession.cpp*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef TIPTVUINT32STREAMOBJECT_H
       
    22 #define TIPTVUINT32STREAMOBJECT_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include "MIptvStreamObject.h"
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 // MACROS
       
    30 
       
    31 // DATA TYPES
       
    32 
       
    33 // FUNCTION PROTOTYPES
       
    34 
       
    35 // FORWARD DECLARATIONS
       
    36 
       
    37 // CLASS DECLARATION
       
    38 class RWriteStream;
       
    39 class RReadStream;
       
    40 
       
    41 /**
       
    42 *  @lib IptvUtil.lib
       
    43 */
       
    44 class TIptvUint32StreamObject : public MIptvStreamObject
       
    45     {
       
    46         
       
    47     public: // Functions from base classes
       
    48 
       
    49         IMPORT_C TIptvUint32StreamObject();
       
    50         IMPORT_C ~TIptvUint32StreamObject();
       
    51 
       
    52         /**
       
    53         * From MIptvStreamObject
       
    54         * @param aStream Stream to write.
       
    55         */
       
    56         IMPORT_C void ExternalizeL(RWriteStream& aStream);
       
    57 
       
    58         /**
       
    59         * From MIptvStreamObject
       
    60         * @param aStream Stream to read from.
       
    61         */
       
    62         IMPORT_C void InternalizeL(RReadStream& aStream);
       
    63 
       
    64         /**
       
    65         * From MIptvStreamObject
       
    66         */
       
    67         IMPORT_C TUint32 CountExternalizeSize();
       
    68         
       
    69     public:     // Data
       
    70         TUint32 iData;
       
    71     };
       
    72 
       
    73 #endif      // TIPTVUINT32STREAMOBJECT_H   
       
    74             
       
    75 // End of File