//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / UNI
//
//File: unistate_calldelivered.h
//
//Version: $Revision: 1.5 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/12/04 15:12:01 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//      Implements Call Delivered state of the user side, or
//      Call Received state at the network side.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_USERCALLDELIVERED_H__
#define __UNI_UNISTATE_USERCALLDELIVERED_H__

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

class uniUserCallDelivered : public sigCallDelivered, public uniState
{
    public:
        static uniUserCallDelivered *instance(void);
        
    protected:
        uniUserCallDelivered(void);
        virtual ~uniUserCallDelivered(void);
        
    private:
        static uniUserCallDelivered *_only;
};

#endif // __UNI_UNISTATE_USERCALLDELIVERED_H__
