summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-4.8.1/i18n/csdetect.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2012-03-04 13:16:15 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2012-03-04 13:16:15 +0000
commit4f735f9c7efbb40316858ad2efed993d860c7461 (patch)
tree43ccf38db72347f7b31eee44ec13854565310706 /Build/source/libs/icu/icu-4.8.1/i18n/csdetect.h
parenta88413671252aebde6da430845232b126d5a71dd (diff)
icu 49.1 (49_rc)
git-svn-id: svn://tug.org/texlive/trunk@25559 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu/icu-4.8.1/i18n/csdetect.h')
-rw-r--r--Build/source/libs/icu/icu-4.8.1/i18n/csdetect.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/Build/source/libs/icu/icu-4.8.1/i18n/csdetect.h b/Build/source/libs/icu/icu-4.8.1/i18n/csdetect.h
deleted file mode 100644
index 405e1f55800..00000000000
--- a/Build/source/libs/icu/icu-4.8.1/i18n/csdetect.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- **********************************************************************
- * Copyright (C) 2005-2006, International Business Machines
- * Corporation and others. All Rights Reserved.
- **********************************************************************
- */
-
-#ifndef __CSDETECT_H
-#define __CSDETECT_H
-
-#include "unicode/uobject.h"
-
-#if !UCONFIG_NO_CONVERSION
-
-U_NAMESPACE_BEGIN
-
-class InputText;
-class CharsetRecognizer;
-class CharsetMatch;
-
-class CharsetDetector : public UMemory
-{
-private:
- InputText *textIn;
- CharsetMatch **resultArray;
- int32_t resultCount;
- UBool fStripTags; // If true, setText() will strip tags from input text.
- UBool fFreshTextSet;
- static void setRecognizers(UErrorCode &status);
-
-public:
- CharsetDetector(UErrorCode &status);
-
- ~CharsetDetector();
-
- void setText(const char *in, int32_t len);
-
- const CharsetMatch * const *detectAll(int32_t &maxMatchesFound, UErrorCode &status);
-
- const CharsetMatch *detect(UErrorCode& status);
-
- void setDeclaredEncoding(const char *encoding, int32_t len) const;
-
- UBool setStripTagsFlag(UBool flag);
-
- UBool getStripTagsFlag() const;
-
-// const char *getCharsetName(int32_t index, UErrorCode& status) const;
-
- static int32_t getDetectableCount();
-};
-
-U_NAMESPACE_END
-
-#endif
-#endif /* __CSDETECT_H */