//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / UNI
//
//File: unistate_u3.h
//
//Version: $Revision: 1.5 $
//
//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:
//
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_U3_H__
#define __UNI_UNISTATE_U3_H__

#include "pf/exception.h"

#include "unistate_u.h"

class uniUserOutgoingCallProceeding : public uniUserState
{
    public:
        static uniUserOutgoingCallProceeding *instance(void);

        virtual void uniALERTINGpduAct(uniALERTINGpdu *message_,
                                       pfProtocol *protocol_);
        virtual void uniCONNECTpduAct(uniCONNECTpdu *message_,
                                      pfProtocol *protocol_);
        
        virtual void uniT310timeoutAct(pfProtocol *protocol_);
        
    protected:
        uniUserOutgoingCallProceeding(void);
        virtual ~uniUserOutgoingCallProceeding(void);

    private:
        static uniUserOutgoingCallProceeding *_only;
};

#endif // __UNI_UNISTATE_U3_H__
