16 lines
165 B
C
16 lines
165 B
C
|
#ifndef DOMAIN_DISPLAY_H
|
||
|
#define DOMAIN_DISPLAY_H
|
||
|
|
||
|
|
||
|
namespace domain {
|
||
|
|
||
|
class Display
|
||
|
{
|
||
|
public:
|
||
|
Display();
|
||
|
};
|
||
|
|
||
|
} // namespace domain
|
||
|
|
||
|
#endif // DOMAIN_DISPLAY_H
|