//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_u.h
//
//Version: $Revision: 1.11 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/10 15:57:12 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Pusa
//
//Description:
//
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_U_H__
#define __UNI_UNISTATE_U_H__

#include "iface/sigif/sigdownprimitives.h"
#include "iface/sigif/sigupprimitives.h"

#include "unistate.h"
#include "uniprimitives.h"
#include "unipdu.h"

//
// Class: uniUserState
//
// Description:
//      Implements actions for those inputs, which are (almost) state
//      independent under user side (marked `except states XXX' in the
//      specification) and which should be written in every state class,
//      otherwise.
//      

class uniUserState : public uniState
{
    public:

        virtual void sigRELEASEreqAct(
            sigRELEASEreq *,
            pfProtocol *);
        virtual void uniRELEASEpduAct(
            uniRELEASEpdu *message_,
            pfProtocol *protocol_);
        
    protected:
        uniUserState(void);
        virtual ~uniUserState(void);
};

#endif // __UNI_UNISTATE_U_H__
