//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: sigstate_callreceived.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/12/10 16:10:20 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//      State Call Received (Q.2931, BISUP only)
//      Implements Call Received state of the user side, or
//      Call Delivered state at the network side.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __SIG_SIGSTATE_CALLRECEIVED_H__
#define __SIG_SIGSTATE_CALLRECEIVED_H__

#include "sigstate.h"

class sigCallReceived : public sigState
{
    public:
        static sigCallReceived *instance(void);
        
        virtual void sigSETUPrespAct(
            sigSETUPresp *primitive_,
            pfProtocol *protocol_);
        
    protected:
        sigCallReceived(void);
        virtual ~sigCallReceived(void);
        
    private:
        static sigCallReceived *_only;
};

#endif // __SIG_SIGSTATE_CALLRECEIVED_H__
