//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project/CC
//
//File: ccostate_alerting.h
//
//Version: $Revision: 1.8 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/06/11 15:29:33 $
//
//Organisation:
//      University of Technology
// 
//Author:
//      Pasi Nummisalo
//
//Description:
//     Not in use.  
//
//Copyright:
//     University of Technology
//     Laboratory of Telecommunications and Multimedia 
//      
//Licence:
//     
//
//History:
//

#ifndef __CC_O_STATE_ALERTING_H__
#define __CC_O_STATE_ALERTING_H__

#include "ccostate.h"
#include "iface/sigif/sigupprimitives.h"

class ccOstateAlerting : public ccOstate
{
    public:
        static ccOstateAlerting *instance(void);

        virtual void proceed(ccProtocol *protocol_);
        
        virtual void ccSETUPpduAct(ccSETUPpdu *messenger_,
                                   ccProtocol *protocol_);
      
       
    protected:
        ccOstateAlerting(void);
        virtual ~ccOstateAlerting(void);
        
    private:
        static ccOstateAlerting *_only;
};

#endif // __CC_O_STATE_ALERTING_H__



