//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_u7.h
//
//Version: $Revision: 1.5 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/12/10 12:01:19 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Katajavuori
//      Sami Raatikainen (based on version 1.2)
//
//Description:
//      State Call Received (U7) (Q2931 only)
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_U7_H__
#define __UNI_UNISTATE_U7_H__

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

//
// Class: uniUserCallReceived
//
// Description:
//      Implements Call Received state of the user side.
//

class uniUserCallReceived : public uniState, public sigCallReceived
{
    public:
        static uniUserCallReceived *instance(void);
        
    protected:
        uniUserCallReceived(void);
        virtual ~uniUserCallReceived(void);

    private:
        static uniUserCallReceived *_only;
};

#endif // __UNI_UNISTATE_U7_H__



