]> git.saurik.com Git - apple/icu.git/blame - icuSources/samples/layout/GUISupport.h
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / samples / layout / GUISupport.h
CommitLineData
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: GUISupport.h
9 *
10 * created on: 11/06/2001
11 * created by: Eric R. Mader
12 */
13
14#ifndef __GUISUPPORT_H
15#define __GUISUPPORT_H
16
17class GUISupport
18{
19public:
20 GUISupport() {};
73c04bcf 21 virtual ~GUISupport() {};
b75a7d8f
A
22
23 virtual void postErrorMessage(const char *message, const char *title) = 0;
24};
25
26#endif