2001-10-06 14:13:28 +00:00
|
|
|
#ifndef IINTERFACE_H
|
|
|
|
#define IINTERFACE_H
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
2002-07-26 18:28:18 +00:00
|
|
|
//! Base class of interfaces
|
|
|
|
/*!
|
|
|
|
This is the base class of all interface classes. An interface class has
|
|
|
|
only pure virtual methods.
|
|
|
|
*/
|
2001-10-06 14:13:28 +00:00
|
|
|
class IInterface {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2002-07-26 18:28:18 +00:00
|
|
|
//! Interface destructor does nothing
|
2001-10-06 14:13:28 +00:00
|
|
|
virtual ~IInterface() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|