//Editor-Info: -*- C++ -*-
//
//Subject: TOVE-project / SCCP protocol
//
//File: sccpblock_sclc.h
//
//Version: $Revision: 1.3 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/02/04 19:06:25 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      This file contains definition of SCCP connectionless procedures.
//
//Copyright:
//
//
//Licence:
//
//
//History:

#ifndef __SCCP_BLOCK_SCLC_H__
#define __SCCP_BLOCK_SCLC_H__

#include "sccpcolleague.h"

class sccpProtocol;
class sccpPdu;

//
//Class: sccpBlockSCLC
//
//Description:
//      This class implements a context for
//      connectionless block of SCCP protocol.
//

class sccpBlockSCLC : public sccpColleague
{
    public:
        sccpBlockSCLC(sccpProtocol *protocol_, ss7Configure &configure_);
        virtual ~sccpBlockSCLC(void);

        virtual void toSubSystem(pfMessenger *messenger_);
        virtual void toSCRC(pfMessenger *messenger_);
        
        void assignSLS(sccpPdu *pdu_);
        
    private:

};

#endif // __SCCP_BLOCK_SCLC_H__

