//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project/CC
//
//File: ccostate_analyse.h
//
//Version: $Revision: 1.8 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/06/11 15:29:33 $
//
//Organisation:
//      University of Technology
// 
//Author:
//      Pasi Nummisalo
//
//Description:
//     Function: Information being analyzed and/or traslated according
//     to dialing plan to determinate routing address and call type.
//     NOTE: determination of routing address is implemented in
//     select route state.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//      
//Licence:
//     
//
//History:
//

#ifndef __CC_O_STATE_ANALYSE_H__
#define __CC_O_STATE_ANALYSE_H__

#include "ccostate.h"

class ccOstateAnalyseInformation : public ccOstate
{
    public:
        static ccOstateAnalyseInformation *instance(void);
        
        void proceed(ccProtocol *protocol_);
        
    protected:
        ccOstateAnalyseInformation(void);
        virtual ~ccOstateAnalyseInformation(void);

    private:
        static ccOstateAnalyseInformation *_only;
};

#endif //__CC_O_STATE_ANALYSE_H__
