barrier/base/IInterface.h
2001-10-06 14:13:28 +00:00

12 lines
131 B
C++

#ifndef IINTERFACE_H
#define IINTERFACE_H
#include "common.h"
class IInterface {
public:
virtual ~IInterface() { }
};
#endif