ICU-5808 playout doesn't make much sense w/o BreakIterator.

X-SVN-Rev: 22333
This commit is contained in:
Eric Mader 2007-08-10 00:39:57 +00:00
parent 3a66e3ebd8
commit 473b9c23ed
2 changed files with 14 additions and 0 deletions

View File

@ -7,7 +7,13 @@
#ifndef __PLAYOUT_H
#define __PLAYOUT_H
/*
* ParagraphLayout doesn't make much sense without
* BreakIterator...
*/
#include "unicode/ubidi.h"
#if ! UCONFIG_NO_BREAK_ITERATION
#include "layout/LETypes.h"
#include "plruns.h"
@ -456,3 +462,4 @@ U_DRAFT le_int32 U_EXPORT2
pl_getVisualRunLeading(const pl_visualRun *run);
#endif
#endif

View File

@ -4,6 +4,10 @@
*
*/
/*
* paragraphLayout doesn't make much sense without
* BreakIterator...
*/
#include "layout/LETypes.h"
#include "layout/loengine.h"
#include "layout/plruns.h"
@ -14,6 +18,8 @@
#include "layout/LayoutEngine.h"
#include "layout/ParagraphLayout.h"
#if ! UCONFIG_NO_BREAK_ITERATION
U_NAMESPACE_USE
U_CAPI pl_paragraph * U_EXPORT2
@ -321,3 +327,4 @@ pl_getVisualRunLeading(const pl_visualRun *run)
return vr->getLeading();
}
#endif