//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SCCP Interface
//
//File: sccpdownprimitives.h
//
//Version: $Revision: 1.4 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/02/05 14:14:38 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Class definitions for primitives from SCCP user to
//      SCCP protocol.
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __SCCPDOWNPRIMITIVES_H__
#define __SCCPDOWNPRIMITIVES_H__

#include "sccpclprimitives.h"

class pfProtocol;
class pfState;


//
//Class: sccpN-UNITDATAreq
//

class sccpN_UNITDATAreq : public sccpCLprimitives
{
    public:
        sccpN_UNITDATAreq(void);
        virtual ~sccpN_UNITDATAreq(void);
        
        virtual void apply(pfState *state_, pfProtocol *protocol_);
};

//
//Class :  sccpDownInputs
//
//Description:
//    Pure virtual interface class for all protocol states using
//    SCCP-interface (between user and SCCP) downward primitive
//    messengers (requests from user e.g. TCAP) defined above.
//

class sccpDownInputs
{
    public:
        virtual void sccpN_UNITDATAreqAct(sccpN_UNITDATAreq *messenger_,
                                          pfProtocol *protocol_) = 0;
};

#endif // __SCCPDOWNPRIMITIVES_H__
