//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SW
//
//File: swnnilink.h
//
//Version: $Revision: 1.6 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/11/19 12:31:43 $
//
//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 __SW_NNILINK_H__
#define __SW_NNILINK_H__

#include "swlink.h"

//
//Class: swNNIlink
//

class swNNIlink : public swLink
{
    public:
        static swNNIlink *createPrototype(void);
        swNNIlink *clonePrototype(pfUlong linkIdentifier_,
                                  pfUlong destinationPointCode_);
        
        virtual ~swNNIlink(void);
        
    protected:
        swNNIlink(void);
        swNNIlink(const swNNIlink &other_);
        
        void setConduits(pfUlong linkIdentifier_,
                         pfUlong destinationPointCode_);
};

#endif // __SW_NNILINK_H__

