//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: sigstate_callpresent.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 Present (Q.2931).
//      Implements Call Present state of the user side, or
//      Call Initiated 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_CALLPRESENT_H__
#define __SIG_SIGSTATE_CALLPRESENT_H__

#include "sigstate.h"

class sigCallPresent : public sigState
{
    public:
        static sigCallPresent *instance(void);
        
        virtual void sigPROCEEDINGreqAct(
            sigPROCEEDINGreq *primitive_,
            pfProtocol *protocol_);

        virtual void sigRELEASErespAct(
            sigRELEASEresp *primitive_,
            pfProtocol *protocol_);
        
    protected:
        sigCallPresent(void);
        virtual ~sigCallPresent(void);
        
    private:
        static sigCallPresent *_only;
};

#endif // __SIG_SIGSTATE_CALLPRESENT_H__
