//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SW
//
//File: swlink.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/11/12 20:20:53 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Interface for broadband and narrowband links.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __SW_LINK_H__
#define __SW_LINK_H__

#include <typeinfo>
#include "pf/conduit.h"
#include "pf/types.h"

class swLink
{
    public:
        swLink(const swLink &other_);
        virtual ~swLink(void);
        virtual pfConduit getCoOrdConduit(void);
        virtual void connectProtocols(void);

    protected:
        swLink(void);
        void setLinkIdentifier(pfUlong linkIdentifier_);

    protected:
        pfUlong _linkIdentifier;

        pfConduit _factoryProxy;
        pfConduit _muxProxy;
        pfConduit _coOrdProxy;

        pfKey _maxMuxKeyValue;
};

#endif // __SW_LINK_H__
