//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / testing/switch
//
//File: switchtestimpl.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/07/09 13:14:02 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Test implementation for switch used by ILMI
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __TESTING_SWITCHTESTIMPL_H__
#define __TESTING_SWITCHTESTIMPL_H__

#include <typeinfo>
#include <string>

#include "mgmt/mgmtdelegationbase.h"

class mgmtCommand;

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

    private:
        int _counter;
};

#endif // __TESTING_SWITCHTESTIMPL_H__

