//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SIG
//
//File: sigstate_networkconnectrequest.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/11/16 15:01:27 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//      State Network Connect Request. Used only at the network side of
//      Q.2931 and its derivatives. ISUP and user sides skip this
//      state and change to active state instead.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __SIG_SIGSTATE_NETWORKCONNECTREQUEST_H__
#define __SIG_SIGSTATE_NETWORKCONNECTREQUEST_H__

#include "sigstate.h"

class sigNetworkConnectRequest : public sigState
{
    public:
        static sigNetworkConnectRequest *instance(void);
        
        virtual void sigSETUP_COMPLETEreqAct(
            sigSETUP_COMPLETEreq *primitive_,
            pfProtocol *protocol_);
        
    protected:
        sigNetworkConnectRequest(void);
        virtual ~sigNetworkConnectRequest(void);
        
    private:
        static sigNetworkConnectRequest *_only;
};

#endif // __SIG_SIGSTATE_NETWORKCONNECTREQUEST_H__
