ICU-45 Moved the include path around in the implementation.

X-SVN-Rev: 510
This commit is contained in:
Helena Chapman 2000-01-11 00:46:58 +00:00
parent ee49e7e363
commit 3b89a0c831
7 changed files with 12 additions and 10 deletions

View File

@ -7,6 +7,7 @@
**********************************************************************
*/
#include "ucmp8.h"
#include "unicode/dbbi.h"
#include "dbbi_tbl.h"
#include "uvector.h"

View File

@ -7,6 +7,7 @@
**********************************************************************
*/
#include "ucmp8.h"
#include "dbbi_tbl.h"
#include "unicode/dbbi.h"

View File

@ -10,6 +10,8 @@
#include "unicode/rbbi.h"
#include "unicode/schriter.h"
#include "rbbi_tbl.h"
#include "filestrm.h"
/**
* A token used as a character-category value to identify ignore characters

View File

@ -8,10 +8,10 @@
**********************************************************************
*/
#include "rbbi.h"
#include "unicode\rbbi.h"
#include "rbbi_bld.h"
#include "cmemory.h"
#include "unicode.h"
#include "unicode\unicode.h"
//=======================================================================
// RuleBasedBreakIterator.Builder

View File

@ -7,8 +7,9 @@
**********************************************************************
*/
#include "rbbi_tbl.h"
#include "ucmp8.h"
#include "cmemory.h"
#include "rbbi_tbl.h"
//=======================================================================
// constructor

View File

@ -10,12 +10,10 @@
#ifndef RBBI_TBL_H
#define RBBI_TBL_H
#include "ucmp8.h"
#include "utypes.h"
#include "unistr.h"
#include "unicode/utypes.h"
#include "unicode/unistr.h"
#include "unicode/brkiter.h"
#include "filestrm.h"
/**
* This class contains the internal static tables that are used by the
* RuleBasedBreakIterator. Once created, these tables are immutable,

View File

@ -10,11 +10,10 @@
#ifndef RBBI_H
#define RBBI_H
#include "utypes.h"
#include "rbbi_tbl.h"
#include "unicode/utypes.h"
#include "unicode/brkiter.h"
#include "filestrm.h"
class RuleBasedBreakIteratorTables;
/**
* <p>A subclass of BreakIterator whose behavior is specified using a list of rules.</p>
*