//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / IE
//
//File: dtl.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/01 13:18:51 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//      PNNI: Designated Transit List
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 
//

#ifndef __IE_DTL_H__
#define __IE_DTL_H__

#include "informationelement.h"
#include "partynumber.h"
#include <list>

class ieDTL : public ieInformationElement
{
    public:
        ieDTL(void);
        ieDTL(const ieDTL &other_);
        virtual ~ieDTL(void);
//        const ieDTL &operator=(const ieDtl &other_);

        pfIE *clone(void) const;
        
        void pushIE(iePartyNumber *ie_);
        iePartyNumber *popIE(void);
        
    private:
        typedef list<iePartyNumber *> stackType;
        stackType _stack;
};

#endif // __IE_DTL_H__
