summaryrefslogtreecommitdiff
path: root/ACEXML/common/Encoding.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /ACEXML/common/Encoding.h
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'ACEXML/common/Encoding.h')
-rw-r--r--ACEXML/common/Encoding.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/ACEXML/common/Encoding.h b/ACEXML/common/Encoding.h
deleted file mode 100644
index fc0917c0b91..00000000000
--- a/ACEXML/common/Encoding.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Encoding.h
- *
- * This file provides utility functions to determine the encoding of a file
- * or a byte stream automatically.
- *
- * $Id$
- *
- * @author Krishnakumar B <kitty@cs.wustl.edu>
- */
-//=============================================================================
-
-#ifndef _ACEXML_ENCODING_H
-#define _ACEXML_ENCODING_H
-
-#include "ace/pre.h"
-#include "ACEXML/common/ACEXML_Export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ACEXML/common/XML_Types.h"
-
-/**
- * @class ACEXML_Encoding Encoding.h "ACEXML/common/Encoding.h"
- *
- * @brief ACEXML_Encoding
- *
- * Wrapper class for determining the encoding of a file or a byte stream.
- */
-class ACEXML_Export ACEXML_Encoding
-{
-public:
- enum {
- UCS4BE = 0,
- UCS4LE = 1,
- UCS4_2143 = 2,
- UCS4_3412 = 3,
- UTF16BE = 4,
- UTF16LE = 5,
- UTF8 = 6,
- OTHER = 7
- } ENCODING;
-
- static const ACEXML_Char* encoding_names_[8];
-
- static const ACEXML_UTF8 byte_order_mark_[][4];
-
- static const ACEXML_UTF8 magic_values_[][4];
-
- static const ACEXML_Char* get_encoding (const char* input);
-
-};
-
-#include "ace/post.h"
-
-#endif /* _ACEXML_ENCODING_H */