//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_n7.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/10 15:57:12 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Katajavuori
//
//Description:
//      State Call Received (N7) (Q2931 only)
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_N7_H__
#define __UNI_UNISTATE_N7_H__

#include "unistate_n.h"

//
// Class: uniNetworkCallReceived
//
// Description:
//      Implements Call Received state of the network side.
//

class uniNetworkCallReceived : public uniNetworkState
{
    public:
        static uniNetworkCallReceived *instance(void);

        virtual void uniCONNECTpduAct(uniCONNECTpdu *message_,
                                      pfProtocol *protocol_);
        virtual void uniT301timeoutAct(pfProtocol *protocol_);
        
    protected:
        uniNetworkCallReceived(void);
        virtual ~uniNetworkCallReceived(void);

    private:
        static uniNetworkCallReceived *_only;
};

#endif // __UNI_UNISTATE_N7_H__
