//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SIG
//
//File: sigstate_userconnectrequest.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/12/10 16:10:21 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//      State User Connect Request. Used only at the user side of
//      Q.2931 and its derivatives. ISUP and network 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_USERCONNECTREQUEST_H__
#define __SIG_SIGSTATE_USERCONNECTREQUEST_H__

#include "sigstate.h"

class sigUserConnectRequest : public sigState
{
    public:
        static sigUserConnectRequest *instance(void);
        
        virtual void sigSETUP_COMPLETEindAct(
            sigSETUP_COMPLETEind *primitive_,
            pfProtocol *protocol_);
        
        virtual void sigAwaitCONNECT_ACKtimeoutAct(pfProtocol *protocol_);
        
    protected:
        sigUserConnectRequest(void);
        virtual ~sigUserConnectRequest(void);
        
    private:
        static sigUserConnectRequest *_only;
};

#endif // __SIG_SIGSTATE_USERCONNECTREQUEST_H__
