]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/csrecog.cpp
ICU-8.11.tar.gz
[apple/icu.git] / icuSources / i18n / csrecog.cpp
diff --git a/icuSources/i18n/csrecog.cpp b/icuSources/i18n/csrecog.cpp
new file mode 100644 (file)
index 0000000..ba70b15
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ **********************************************************************
+ *   Copyright (C) 2005-2006, International Business Machines
+ *   Corporation and others.  All Rights Reserved.
+ **********************************************************************
+ */
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_CONVERSION
+
+#include "csrecog.h"
+
+U_NAMESPACE_BEGIN
+
+CharsetRecognizer::~CharsetRecognizer()
+{
+    // nothing to do.
+}
+
+const char *CharsetRecognizer::getLanguage() const
+{
+    return "";
+}
+
+U_NAMESPACE_END    
+
+#endif