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

#ifndef __UNI_UNISTATE_N1_H__
#define __UNI_UNISTATE_N1_H__

#include "unistate_n.h"

//
// Class: uniNetworkCallInitiated
//
// Description:
//      Implements UNI Call Initiated state of the network side.
//

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

        virtual void sigPROCEEDINGreqAct(sigPROCEEDINGreq *message_,
                                         pfProtocol *protocol_);
        virtual void sigRELEASErespAct(sigRELEASEresp *message_,
                                       pfProtocol *protocol_);
        
    protected:
        uniNetworkCallInitiated(void);
        virtual ~uniNetworkCallInitiated(void);

    private:
        static uniNetworkCallInitiated *_only;
};

#endif // __UNI_UNISTATE_N1_H__
