mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-19 00:41:49 +03:00
15 lines
228 B
C
15 lines
228 B
C
|
#ifndef XSCREEN_H
|
||
|
#define XSCREEN_H
|
||
|
|
||
|
#include "XBase.h"
|
||
|
|
||
|
class XScreen : public XBase { };
|
||
|
|
||
|
// screen cannot be opened
|
||
|
class XScreenOpenFailure : public XScreen {
|
||
|
protected:
|
||
|
virtual CString getWhat() const throw();
|
||
|
};
|
||
|
|
||
|
#endif
|