12 lines
131 B
C
12 lines
131 B
C
|
#ifndef IINTERFACE_H
|
||
|
#define IINTERFACE_H
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
class IInterface {
|
||
|
public:
|
||
|
virtual ~IInterface() { }
|
||
|
};
|
||
|
|
||
|
#endif
|