//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SSCOP protocol
//
//File: sscopstate8.h
//
//Version: $Revision: 1.6 $
//
//State: $State: Exp $
//
//Date: $Date: 1999/03/11 18:53:56 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications and Multimedia
//
//Author:
//      Juhana Räsänen
//
//Description:
//      Class definition for SSCOP state 8 (Recovery Response Pending)
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History:
 

#ifndef __SSCOP_SSCOPSTATE8_H__
#define __SSCOP_SSCOPSTATE8_H__

#include "sscopstate.h"


//
// Class: sscopRecoveryResponsePending
//
// Description:
//     SSCOP protocol state 8 (Recovery Response Pending) class
//     definition
//

class sscopRecoveryResponsePending : public sscopState
{
    public:
        static sscopRecoveryResponsePending *instance(void);
        
        // Actions for incoming AA-signals from above layer
        void aaRELEASEreqAct(aaRELEASEreq *messenger_,
                             pfProtocol *protocol_) const;
        void aaRESYNCreqAct(aaRESYNCreq *messenger_,
                            pfProtocol *protocol_) const;
        void aaRECOVERrespAct(aaRECOVERresp *messenger_,
                              pfProtocol *protocol_) const;
        void aaRETRIEVEreqAct(aaRETRIEVEreq *messenger_,
                              pfProtocol *protocol_) const;

        // Actions for incoming PDUs
        void sscopBGNpduAct(sscopBGN_PDU *messenger_,
                            sscopProtocol *protocol_) const;
        void sscopBGAKpduAct(sscopBGAK_PDU *messenger_,
                             sscopProtocol *protocol_) const;
        void sscopBGREJpduAct(sscopBGREJ_PDU *messenger_,
                              sscopProtocol *protocol_) const;
        void sscopENDpduAct(sscopEND_PDU *messenger_,
                            sscopProtocol *protocol_) const;
        void sscopENDAKpduAct(sscopENDAK_PDU *messenger_,
                              sscopProtocol *protocol_) const;
        void sscopRSpduAct(sscopRS_PDU *messenger_,
                           sscopProtocol *protocol_) const;
        void sscopRSAKpduAct(sscopRSAK_PDU *messenger_,
                             sscopProtocol *protocol_) const;
        void sscopERpduAct(sscopER_PDU *messenger_,
                           sscopProtocol *protocol_) const;
        void sscopSTATpduAct(sscopSTAT_PDU *messenger_,
                             sscopProtocol *protocol_) const;
        void sscopUSTATpduAct(sscopUSTAT_PDU *messenger_,
                              sscopProtocol *protocol_) const;

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

    private:
        static sscopRecoveryResponsePending *_only;
};


#endif // __SSCOP_SSCOPSTATE8_H__
