//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_n3.h
//
//Version: $Revision: 1.8 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/08/05 05:22:08 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Pusa
//
//Description:
//      State Outgoing Call Proceeding (N3)
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_N3_H__
#define __UNI_UNISTATE_N3_H__

#include "unistate_n.h"

//
// Class: uniNetworkOutgoingCallProceeding
//
// Description:
//      Implements Outgoing Call Proceeding state of the network side.
//

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

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

    private:
        static uniNetworkOutgoingCallProceeding *_only;
};

#endif // __UNI_UNISTATE_N3_H__
