//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / sw
//
//File: swconfigimpl.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1999/03/02 14:47:21 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Implements a configuration interface.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __SWCONFIGIMPL_H__
#define __SWCONFIGIMPL_H__

#include <typeinfo>
#include <string>

#include "mgmt/mgmtdelegationbase.h"

class mgmtCommand;

class swConfigImpl : public mgmtDelegationBase
{
    public:
        swConfigImpl(void);
        ~swConfigImpl(void);
        void init(const string &pointCode_);
        
        virtual string receiveGet(const string &name_);
        virtual void receiveSet(const string &name_, const string &value_);
        virtual void receiveExecute(mgmtCommand &command_);

    private:
};

#endif // __SWCONFIGIMPL_H__

