1 | /* |
---|
2 | * Licensed to the Apache Software Foundation (ASF) under one or more |
---|
3 | * contributor license agreements. See the NOTICE file distributed with |
---|
4 | * this work for additional information regarding copyright ownership. |
---|
5 | * The ASF licenses this file to You under the Apache License, Version 2.0 |
---|
6 | * (the "License"); you may not use this file except in compliance with |
---|
7 | * the License. You may obtain a copy of the License at |
---|
8 | * |
---|
9 | * http://www.apache.org/licenses/LICENSE-2.0 |
---|
10 | * |
---|
11 | * Unless required by applicable law or agreed to in writing, software |
---|
12 | * distributed under the License is distributed on an "AS IS" BASIS, |
---|
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
---|
14 | * See the License for the specific language governing permissions and |
---|
15 | * limitations under the License. |
---|
16 | */ |
---|
17 | |
---|
18 | #ifndef XMLIBM1140TRANSCODER_HPP |
---|
19 | #define XMLIBM1140TRANSCODER_HPP |
---|
20 | |
---|
21 | #include <xercesc/util/XercesDefs.hpp> |
---|
22 | #include <xercesc/util/XML256TableTranscoder.hpp> |
---|
23 | |
---|
24 | XERCES_CPP_NAMESPACE_BEGIN |
---|
25 | |
---|
26 | // |
---|
27 | // This class provides an implementation of the XMLTranscoder interface |
---|
28 | // for a simple ibm-1140 transcoder. The parser does some encodings |
---|
29 | // intrinsically without depending upon external transcoding services. |
---|
30 | // To make everything more orthagonal, we implement these internal |
---|
31 | // transcoders using the same transcoder abstraction as the pluggable |
---|
32 | // transcoding services do. |
---|
33 | // |
---|
34 | class XMLUTIL_EXPORT XMLIBM1140Transcoder : public XML256TableTranscoder |
---|
35 | { |
---|
36 | public : |
---|
37 | // ----------------------------------------------------------------------- |
---|
38 | // Public, static methods |
---|
39 | // ----------------------------------------------------------------------- |
---|
40 | static XMLCh xlatThisOne(const XMLByte toXlat); |
---|
41 | |
---|
42 | |
---|
43 | // ----------------------------------------------------------------------- |
---|
44 | // Public constructors and destructor |
---|
45 | // ----------------------------------------------------------------------- |
---|
46 | XMLIBM1140Transcoder |
---|
47 | ( |
---|
48 | const XMLCh* const encodingName |
---|
49 | , const unsigned int blockSize |
---|
50 | , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager |
---|
51 | ); |
---|
52 | |
---|
53 | virtual ~XMLIBM1140Transcoder(); |
---|
54 | |
---|
55 | |
---|
56 | private : |
---|
57 | // ----------------------------------------------------------------------- |
---|
58 | // Unimplemented constructors and operators |
---|
59 | // ----------------------------------------------------------------------- |
---|
60 | XMLIBM1140Transcoder(); |
---|
61 | XMLIBM1140Transcoder(const XMLIBM1140Transcoder&); |
---|
62 | XMLIBM1140Transcoder& operator=(const XMLIBM1140Transcoder&); |
---|
63 | }; |
---|
64 | |
---|
65 | XERCES_CPP_NAMESPACE_END |
---|
66 | |
---|
67 | #endif |
---|