//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / COMMON
//
//File: mgmtiface.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/09/28 05:11:14 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      This file defines pure virtual interface for a management object
//      to handle protocol errors.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 
//
//

#ifndef __COMMON_MGMT_IFACE_H__
#define __COMMON_MGMT_IFACE_H__

class commonMgmtInterface
{
    public:
        virtual void error(string &protocolName_, int cause_) = 0;
};

#endif // __COMMON_MGMT_IFACE_H__

