//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_u1.h
//
//Version: $Revision: 1.6 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/12/09 14:48:08 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Pusa
//      Sami Raatikainen (based on version 1.4)
//
//Description:
//
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_U1_H__
#define __UNI_UNISTATE_U1_H__

#include "pf/exception.h"

#include "unistate.h"
#include "protocol/sig/sigstate_callinitiated.h"

class uniUserCallInitiated : public uniState, public sigCallInitiated
{
    public:
        static uniUserCallInitiated *instance(void);
        
        virtual void sigSETUPconfAct(
            sigSETUPconf *message_,
            pfProtocol *protocol_);

        virtual void sigALERTINGindAct(
            sigALERTINGind *message_,
            pfProtocol *protocol_);

    protected:
        uniUserCallInitiated(void);
        virtual ~uniUserCallInitiated(void);

    private:
        static uniUserCallInitiated *_only;
};

#endif // __UNI_UNISTATE_U1_H__
