summaryrefslogtreecommitdiff
path: root/deps/icu-small/source/i18n/csrecog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/icu-small/source/i18n/csrecog.cpp')
-rw-r--r--deps/icu-small/source/i18n/csrecog.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/deps/icu-small/source/i18n/csrecog.cpp b/deps/icu-small/source/i18n/csrecog.cpp
new file mode 100644
index 0000000000..7535e9aa66
--- /dev/null
+++ b/deps/icu-small/source/i18n/csrecog.cpp
@@ -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