//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / ILMI protocol
//
//File: ilmiarstate_address.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/07/03 14:01:49 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Definitions for ILMI Address Registraton
//      Address state.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __ILMI_AR_STATE_ADDRESS_H__
#define __ILMI_AR_STATE_ADDRESS_H__

#include "ilmiarstate.h"

//
//Class: ilmiARState_Address
//
//Description:
//    
//

class ilmiARState_Address : public ilmiARState
{
    public:
        // singleton
        static ilmiARState_Address *instance(void);

        virtual void setValue(ilmiAddressRegistration *protocol_,
                              const string &name_,
                              const string &value_);

    protected:
        ilmiARState_Address(void);
        virtual ~ilmiARState_Address(void);
        
    private:
        // singleton
        static ilmiARState_Address *_only;
};

#endif // __ILMI_AR_STATE_ADDRESS_H__
