//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project/CC
//
//File: cctstate_presentcall.h
//
//Version: $Revision: 1.8 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/06/30 15:11:04 $
//
//Organisation:
//      University of Technology
// 
//Author:
//      Pasi Nummisalo
//
//Description:
//     Waiting for answer from terminating call party.
//
//Copyright:
//     University of Technology
//     Laboratory of Telecommunications and Multimedia 
//      
//Licence:
//     
//
//History:
//

#ifndef __CC_T_STATE_PRESENT_CALL_H__
#define __CC_T_STATE_PRESENT_CALL_H__

#include "cctstate.h"

class ccTstatePresentCall : public ccTstate
{
    public:
        static ccTstatePresentCall *instance(void);

        void proceed(ccProtocol *protocol_);

        
        virtual void sigSETUPconfAct(sigSETUPconf *setup_,
                                     pfProtocol *protocol_);
      
        /*
        virtual void sigALERTINGindAct(sigALERTINGind *alerting_,
                                       pfProtocol *protocol_);
        */
                                          
    protected:
        ccTstatePresentCall(void);
        virtual ~ccTstatePresentCall(void);
        
    private:
        static ccTstatePresentCall *_only;
};

#endif // __CC_T_STATE_PRESENT_CALL_H__
