//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / UNI
//
//File: unistate_u6.h
//
//Version: $Revision: 1.3 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/08/05 05:22:08 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Katajavuori
//
//Description:
//
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_U6_H__
#define __UNI_UNISTATE_U6_H__

#include "pf/exception.h"

#include "unistate_u.h"

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

        virtual void sigRELEASErespAct(sigRELEASEresp *message_,
                                       pfProtocol *protocol_);
        virtual void sigPROCEEDINGreqAct(sigPROCEEDINGreq *message_,
                                         pfProtocol *protocol_);
        virtual void sigSETUPrespAct(sigSETUPresp *message_,
                                     pfProtocol *protocol_);
        
    protected:
        uniUserCallPresent(void);
        virtual ~uniUserCallPresent(void);

    private:
        static uniUserCallPresent *_only;
};

#endif // __UNI_UNISTATE_U6_H__


