]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | ******************************************************************************* | |
3 | * | |
73c04bcf | 4 | * Copyright (C) 1999-2005, International Business Machines |
b75a7d8f A |
5 | * Corporation and others. All Rights Reserved. |
6 | * | |
7 | ******************************************************************************* | |
8 | * file name: GnomeGUISupport.h | |
9 | * | |
10 | * created on: 11/06/2001 | |
11 | * created by: Eric R. Mader | |
12 | */ | |
13 | ||
14 | #ifndef __GNOMEGUISUPPORT_H | |
15 | #define __GNOMEGUISUPPORT_H | |
16 | ||
17 | #include "GUISupport.h" | |
18 | ||
19 | class GnomeGUISupport : public GUISupport | |
20 | { | |
21 | public: | |
22 | GnomeGUISupport() {}; | |
73c04bcf | 23 | virtual ~GnomeGUISupport() {}; |
b75a7d8f A |
24 | |
25 | virtual void postErrorMessage(const char *message, const char *title); | |
26 | }; | |
27 | ||
28 | #endif |