//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_u1.h
//
//Version: $Revision: 1.4 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/23 06:02:48 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Pusa
//
//Description:
//
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_U1_H__
#define __UNI_UNISTATE_U1_H__

#include "pf/exception.h"

#include "unistate_u.h"

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

        virtual void uniCALL_PROCEEDINGpduAct(
            uniCALL_PROCEEDINGpdu *message_,
            pfProtocol *protocol_);
        virtual void uniCONNECTpduAct(
            uniCONNECTpdu *message_,
            pfProtocol *protocol_);
        
        virtual void uniT303timeoutAct(pfProtocol *protocol_);
        
    protected:
        uniUserCallInitiated(void);
        virtual ~uniUserCallInitiated(void);

    private:
        static uniUserCallInitiated *_only;
};

#endif // __UNI_UNISTATE_U1_H__
