//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / MIB
//
//File: mibdestination.h
//
//Version: $Revision: 1.4 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/06/15 12:38:05 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Define interface from which MIB leaf calls a get/set methods.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __MIB_DESTINATION_H__
#define __MIB_DESTINATION_H__

#include <typeinfo>
#include <string>

//
//Class: mibDestination
//
//Description:
//    Defines pure virtual interface for destination of method
//    calls from MIB leaf.
//

class mibDestination
{
    public:
        virtual string getValue(const string &name_) = 0;
        virtual void setValue(const string &name_, const string &value_) = 0;
};

#endif // __MIB_DESTINATION_H__
