blob: 76fa22c354f1afc76929e4243c8998c76507ca95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*************************************************************************
#*
#* Copyright (c) 2002 Sun Microsystems Inc.
#*
#* Bugs! - Contact Prabhat.Hegde@sun.com
#*************************************************************************/
#ifndef _I18N_BREAKITERATOR_HI_HXX_
#define _I18N_BREAKITERATOR_HI_HXX_
#include <breakiterator_ctl.hxx>
namespace com {
namespace sun {
namespace star {
namespace i18n {
// ----------------------------------------------------
// class BreakIterator_hi
// ----------------------------------------------------
class BreakIterator_hi : public BreakIterator_CTL
{
public:
BreakIterator_hi();
~BreakIterator_hi();
protected:
void SAL_CALL makeIndex(const rtl::OUString& text, sal_Int32 pos)
throw(com::sun::star::uno::RuntimeException);
};
}
}
}
}
#endif
|