barrier/base/IInterface.h

12 lines
129 B
C
Raw Normal View History

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