source: NonGTP/Xerces/xerces/samples/SAXPrint/SAXPrint.hpp @ 358

Revision 358, 3.3 KB checked in by bittner, 19 years ago (diff)

xerces added

Line 
1/*
2 * Copyright 1999-2000,2004 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 * $Log: SAXPrint.hpp,v $
19 * Revision 1.7  2004/09/08 13:55:34  peiyongz
20 * Apache License Version 2.0
21 *
22 * Revision 1.6  2003/05/30 09:36:36  gareth
23 * Use new macros for iostream.h and std:: issues.
24 *
25 * Revision 1.5  2003/02/05 18:53:24  tng
26 * [Bug 11915] Utility for freeing memory.
27 *
28 * Revision 1.4  2000/03/02 19:53:49  roddey
29 * This checkin includes many changes done while waiting for the
30 * 1.1.0 code to be finished. I can't list them all here, but a list is
31 * available elsewhere.
32 *
33 * Revision 1.3  2000/02/11 02:47:15  abagchi
34 * Removed StrX::transcode
35 *
36 * Revision 1.2  2000/02/06 07:47:24  rahulj
37 * Year 2K copyright swat.
38 *
39 * Revision 1.1.1.1  1999/11/09 01:09:29  twl
40 * Initial checkin
41 *
42 * Revision 1.6  1999/11/08 20:43:41  rahul
43 * Swat for adding in Product name and CVS comment log variable.
44 *
45 */
46
47// ---------------------------------------------------------------------------
48//  Includes for all the program files to see
49// ---------------------------------------------------------------------------
50#include <string.h>
51#if defined(XERCES_NEW_IOSTREAMS)
52#include <iostream>
53#else
54#include <iostream.h>
55#endif
56#include <stdlib.h>
57#include "SAXPrintHandlers.hpp"
58
59
60// ---------------------------------------------------------------------------
61//  This is a simple class that lets us do easy (though not terribly efficient)
62//  trancoding of XMLCh data to local code page for display.
63// ---------------------------------------------------------------------------
64class StrX
65{
66public :
67    // -----------------------------------------------------------------------
68    //  Constructors and Destructor
69    // -----------------------------------------------------------------------
70    StrX(const XMLCh* const toTranscode)
71    {
72        // Call the private transcoding method
73        fLocalForm = XMLString::transcode(toTranscode);
74    }
75
76    ~StrX()
77    {
78        XMLString::release(&fLocalForm);
79    }
80
81    // -----------------------------------------------------------------------
82    //  Getter methods
83    // -----------------------------------------------------------------------
84    const char* localForm() const
85    {
86        return fLocalForm;
87    }
88
89private :
90    // -----------------------------------------------------------------------
91    //  Private data members
92    //
93    //  fLocalForm
94    //      This is the local code page form of the string.
95    // -----------------------------------------------------------------------
96    char*   fLocalForm;
97};
98
99inline XERCES_STD_QUALIFIER ostream& operator<<(XERCES_STD_QUALIFIER ostream& target, const StrX& toDump)
100{
101    target << toDump.localForm();
102    return target;
103}
Note: See TracBrowser for help on using the repository browser.