10 lines
136 B
C++
10 lines
136 B
C++
#ifndef _IUSERINTERFACE_H
|
|
#define _IUSERINTERFACE_H
|
|
|
|
class UserInterface
|
|
{
|
|
public:
|
|
~UserInterface();
|
|
};
|
|
|
|
#endif // _IUSERINTERFACE_H
|