//Editor-Info: -*- C++ -*-
//
//Subject: TOVE-project / MTP3 protocol
//
//File: mtp3state_hmdt_idle.h
//
//Version: $Revision: 1.6 $
//
//Date: $Date: 1998/04/20 08:36:01 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications and Multimedia
//
//Author:
//      Timo Pärnänen
//      Petteri Koponen
//
//Description:
//      Definition of state class idle of MTP3 message distribution (HMDT)
//      functional block. Recommendation Q.704.
//
//Copyright:
//
//
//Licence:
//
//
//History:

#ifndef __MTP3_STATE_HMDT_IDLE_H__
#define __MTP3_STATE_HMDT_IDLE_H__

#include "mtp3state.h"

//
//Class: mtp3_HMDT_Idle
//
//Inherits: mtp3State
//
//Description:
//    See file description.
//

class mtp3_HMDT_Idle : public mtp3State
{
    public:
        // singleton
        static mtp3_HMDT_Idle *instance(void);
        
        // L2->HMDC->HMDT (originally MESSAGE_FOR_DISTRIBUTION!)
        virtual void naalRECEIVED_MESSAGEindAct(
            naalRECEIVED_MESSAGEind *messenger_,
            pfProtocol *protocol_);
        
    protected:
        // singleton
        mtp3_HMDT_Idle(void);
        virtual ~mtp3_HMDT_Idle(void);
        
        static mtp3_HMDT_Idle *_only;        
};

#endif // __MTP3_STATE_HMDT_IDLE_H__ 
