//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_u4.h
//
//Version: $Revision: 1.2 $
//
//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:
//      State Call Delivered (U4) (Q2931 only)
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_U4_H__
#define __UNI_UNISTATE_U4_H__

#include "unistate_u.h"

//
// Class: uniUserCallDelivered
//
// Description:
//      Implements Call Delivered state of the network side.
//

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

        virtual void uniCONNECTpduAct(uniCONNECTpdu *message_,
                                      pfProtocol *protocol_);
        
    protected:
        uniUserCallDelivered(void);
        virtual ~uniUserCallDelivered(void);

    private:
        static uniUserCallDelivered *_only;
};

#endif // __UNI_UNISTATE_U4_H__



