barrier/base/IInterface.h

12 lines
129 B
C
Raw Normal View History

2001-10-06 18:13:28 +04:00
#ifndef IINTERFACE_H
#define IINTERFACE_H
#include "common.h"
class IInterface {
2002-04-29 18:40:01 +04:00
public:
2001-10-06 18:13:28 +04:00
virtual ~IInterface() { }
};
#endif