//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / IE
//
//File: transparent.h
//
//Version: $Revision: 1.4 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/09 08:50:10 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//      Transparent IE used for parameters which will be transferred
//      transparently or simply if the usage is not supported.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 
//

#ifndef __IE_TRANSPARENT_H__
#define __IE_TRANSPARENT_H__

#include "informationelement.h"
#include "pf/frame.h"

class ieTransparent : public ieInformationElement
{
    public:
        ieTransparent(void);
        ieTransparent(const ieTransparent &other_);
        virtual ~ieTransparent(void);
        const ieTransparent &operator=(const ieTransparent &other_);
        
        pfIE *clone(void) const;
        
        void setType(pfByte ieType_);
        pfByte getType(void) const;

        void setFrame(const pfFrame &value_);
        pfFrame getFrame(void) const;

    private:
        pfByte _ieType;
        pfFrame _value;
};

#endif // __IE_TRANSPARENT_H__

