//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_n4.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 Delivered (N4) (Q2931 only)
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_N4_H__
#define __UNI_UNISTATE_N4_H__

#include "unistate_n.h"

//
// Class: uniNetworkCallDelivered
//
// Description:
//      Implements Call Delivered state of the network side.
//

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

        virtual void sigSETUPrespAct(sigSETUPresp *message_,
                                     pfProtocol *protocol_);
        
    protected:
        uniNetworkCallDelivered(void);
        virtual ~uniNetworkCallDelivered(void);

    private:
        static uniNetworkCallDelivered *_only;
};

#endif // __UNI_UNISTATE_N4_H__
