//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SWIF
//
//File: swportconfig.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/11/17 15:01:22 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Defines a pure virtual interface for port configuration.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __SW_PORTCONFIG_H__
#define __SW_PORTCONFIG_H__

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

//
//Class: swPortConfig
//
class swPortConfig
{
    public:
        virtual void setMinVPI(pfUlong VPI_) = 0;
        virtual void setMaxVPI(pfUlong VPI_) = 0;
        virtual void setMinVCI(pfUlong VCI_) = 0;
        virtual void setMaxVCI(pfUlong VCI_) = 0;
};

#endif // __SW_PORTCONFIG_H__
