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