| 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 XMLWIN1252TRANSCODER_HPP |
|---|
| 19 | #define XMLWIN1252TRANSCODER_HPP |
|---|
| 20 | |
|---|
| 21 | #include <xercesc/util/XercesDefs.hpp> |
|---|
| 22 | #include <xercesc/util/XML256TableTranscoder.hpp> |
|---|
| 23 | |
|---|
| 24 | XERCES_CPP_NAMESPACE_BEGIN |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | // |
|---|
| 28 | // This class provides an implementation of the XMLTranscoder interface |
|---|
| 29 | // for the Windows variant of Latin1, called Windows-1252. Its close to |
|---|
| 30 | // Latin1, but is somewhat different. |
|---|
| 31 | // |
|---|
| 32 | class XMLUTIL_EXPORT XMLWin1252Transcoder : public XML256TableTranscoder |
|---|
| 33 | { |
|---|
| 34 | public : |
|---|
| 35 | // ----------------------------------------------------------------------- |
|---|
| 36 | // Public constructors and destructor |
|---|
| 37 | // ----------------------------------------------------------------------- |
|---|
| 38 | XMLWin1252Transcoder |
|---|
| 39 | ( |
|---|
| 40 | const XMLCh* const encodingName |
|---|
| 41 | , const unsigned int blockSize |
|---|
| 42 | , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager |
|---|
| 43 | ); |
|---|
| 44 | |
|---|
| 45 | virtual ~XMLWin1252Transcoder(); |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | private : |
|---|
| 49 | // ----------------------------------------------------------------------- |
|---|
| 50 | // Unimplemented constructors and operators |
|---|
| 51 | // ----------------------------------------------------------------------- |
|---|
| 52 | XMLWin1252Transcoder(); |
|---|
| 53 | XMLWin1252Transcoder(const XMLWin1252Transcoder&); |
|---|
| 54 | XMLWin1252Transcoder& operator=(const XMLWin1252Transcoder&); |
|---|
| 55 | }; |
|---|
| 56 | |
|---|
| 57 | XERCES_CPP_NAMESPACE_END |
|---|
| 58 | |
|---|
| 59 | #endif |
|---|