//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / TRS
//
//File: link.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/06 13:43:51 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Harri Sunila
//
//Description:
//      Description of a link between two adjacent nodes in the network
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __TRS_LINK_H__
#define __TRS_LINK_H__

#include <typeinfo>
#include <string>
#include "pf/types.h"
#include "pf/storage.h"

class trsLink
{
    public:
        trsLink(void);
        trsLink(const string &destination_,
                pfUlong linkNumber_,
                pfStorage &qosParameters_);
        trsLink(const trsLink &other_);

        virtual ~trsLink(void);

        trsLink &operator=(const trsLink &other_);

        string getDestination(void) const;
        pfUlong getLinkNumber(void) const;
        pfStorage &getQosParameters(void) const;

    private:
        string _destination;
        pfUlong _linkNumber;
        pfStorage _qosParameters;
};

#endif // __TRS_LINK_H__
