barrier/base/IInterface.h

12 lines
131 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 {
public:
virtual ~IInterface() { }
};
#endif