//Editor-Info: -*- C++ -*-
//
//Subject: TOVE-project / SAAL
//
//File: unisaalrelaystate1.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/08/06 12:44:24 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications and Multimedia
//
//Author:
//      Juhana Räsänen
//
//Description:
//      Contains definition of the state for the pseudo UNI SAAL
//      protocol for connection two SAAL users together. Maps
//      request primitives to indication primitives and sends
//      them to the other user.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History:
//

#ifndef __UNISAALRELAYSTATE1_H__
#define __UNISAALRELAYSTATE1_H__

#include "unisaalrelaystate.h"

class uniSaalRelayIdle : public uniSaalRelayState
{
    public:
        static uniSaalRelayIdle *instance(void);
        
// Actions for incoming (U)AAL-primitives from SAAL user
        void uaalRELEASEreqAct(
            uaalRELEASEreq *messenger_,
            pfProtocol *protocol_);

    protected:
        uniSaalRelayIdle(void);
        virtual ~uniSaalRelayIdle(void);

    private:
        static uniSaalRelayIdle *_only;
};

#endif // __UNISAALRELAYSTATE1_H__

