videofeeds/utils/inc/MIptvStreamObject.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 21 Jun 2010 15:43:03 +0300
branchRCL_3
changeset 18 baf439b22ddd
parent 0 96612d01cf9f
permissions -rw-r--r--
Revision: 201023 Kit: 2010125

/*
* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/



#ifndef __MIPTVSTREAMOBJECT_H__
#define __MIPTVSTREAMOBJECT_H__

#include <e32base.h>
#include <s32mem.h>

class RReadStream;
class RWriteStream;

// CLASS DECLARATION

/**
* This class specifies the interface for iptv stream object.
*
* @lib IptvUtil.lib
*/
class MIptvStreamObject
    {
        
    public: // New functions

        /**
        * Serializes this object from aStream.
        *
        * @param aStream 
        */
        virtual void InternalizeL(RReadStream& aStream) = 0;  

        /**
        * Serializes this object to aStream.
        *
        * @param aStream
        */
        virtual void ExternalizeL(RWriteStream& aStream) = 0;  

        /**
        * Returns the size required for externalization buffer in 8-bit
        * bytes.
        */
        virtual TUint32 CountExternalizeSize() = 0;

    public:
        /**
        * Can be used to identify the stream object.
        * This variable is not serialized in InternalizeL and ExternalizeL.
        */
        TInt iObjId;  
    };

#endif