]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | /* |
f3c0d7a5 A |
2 | ******************************************************************************* |
3 | * | |
4 | * © 2016 and later: Unicode, Inc. and others. | |
5 | * License & terms of use: http://www.unicode.org/copyright.html#License | |
6 | * | |
7 | ******************************************************************************* | |
b75a7d8f A |
8 | ******************************************************************************* |
9 | * | |
73c04bcf | 10 | * Copyright (C) 1999-2005, International Business Machines |
b75a7d8f A |
11 | * Corporation and others. All Rights Reserved. |
12 | * | |
13 | ******************************************************************************* | |
14 | * file name: GUISupport.h | |
15 | * | |
16 | * created on: 11/06/2001 | |
17 | * created by: Eric R. Mader | |
18 | */ | |
19 | ||
20 | #ifndef __GUISUPPORT_H | |
21 | #define __GUISUPPORT_H | |
22 | ||
23 | class GUISupport | |
24 | { | |
25 | public: | |
26 | GUISupport() {}; | |
73c04bcf | 27 | virtual ~GUISupport() {}; |
b75a7d8f A |
28 | |
29 | virtual void postErrorMessage(const char *message, const char *title) = 0; | |
30 | }; | |
31 | ||
32 | #endif |