//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / TESTING
//
//File: sscoplink.h
//
//Version: $Revision: 1.3 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/19 13:01:49 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __TESTING_SSCOP_SSCOP_LINK_H__
#define __TESTING_SSCOP_SSCOP_LINK_H__

#include "protocol/saal/saallink.h"
#include "protocol/saal/saal.h"

class sscopLink : public saalLink
{
    public:
        static sscopLink *createATMSSCOPlink(
            pfId linkNumber_,
            int port_,
            int vpi_,
            int vci_,
            int bufferSize_ = SAAL_MAX_SDU_SIZE);

        virtual ~sscopLink(void);
        virtual pfConduit getConduit(void);

    private:
        sscopLink(void);
        void initSSCOP(void);

    private:
        // Copy constructor is not implemented
        sscopLink(const sscopLink &other_);   
};

#endif // __TESTING_SSCOP_SSCOP_LINK_H__
