//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project/CC
//
//File: cctstate_alerting.h
//
//Version: $Revision: 1.8 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/06/30 15:11:04 $
//
//Organisation:
//      University of Technology
// 
//Author:
//      Pasi Nummisalo
//
//Description:
//      Implementation is for further study.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//      
//Licence:
//     
//
//History:
//

#ifndef __CC_T_STATE_ALERTING_H__
#define __CC_T_STATE_ALERTING_H__

#include "cctstate.h"

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

        void proceed(ccProtocol *protocol_);
       
        virtual void sigSETUPconfAct(sigSETUPconf *messenger_,
                                     pfProtocol *protocol_);
                                   
    protected:
        ccTstateAlerting(void);
        virtual ~ccTstateAlerting(void);
        
    private:
        static ccTstateAlerting *_only;
};

#endif // __CC_T_STATE_ALERTING_H__
