barrier/base/IInterface.h

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