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

Revision 358, 3.5 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: SAXCount.hpp,v $
19 * Revision 1.8  2004/09/08 13:55:33  peiyongz
20 * Apache License Version 2.0
21 *
22 * Revision 1.7  2003/05/30 09:36:36  gareth
23 * Use new macros for iostream.h and std:: issues.
24 *
25 * Revision 1.6  2003/02/05 18:53:24  tng
26 * [Bug 11915] Utility for freeing memory.
27 *
28 * Revision 1.5  2002/02/01 22:41:07  peiyongz
29 * sane_include
30 *
31 * Revision 1.4  2000/03/02 19:53:47  roddey
32 * This checkin includes many changes done while waiting for the
33 * 1.1.0 code to be finished. I can't list them all here, but a list is
34 * available elsewhere.
35 *
36 * Revision 1.3  2000/02/11 02:46:39  abagchi
37 * Removed StrX::transcode
38 *
39 * Revision 1.2  2000/02/06 07:47:23  rahulj
40 * Year 2K copyright swat.
41 *
42 * Revision 1.1.1.1  1999/11/09 01:09:31  twl
43 * Initial checkin
44 *
45 * Revision 1.5  1999/11/08 20:43:40  rahul
46 * Swat for adding in Product name and CVS comment log variable.
47 *
48 */
49
50
51// ---------------------------------------------------------------------------
52//  Includes for all the program files to see
53// ---------------------------------------------------------------------------
54#include <xercesc/util/PlatformUtils.hpp>
55#include <stdlib.h>
56#include <string.h>
57#if defined(XERCES_NEW_IOSTREAMS)
58#include <iostream>
59#else
60#include <iostream.h>
61#endif
62#include <xercesc/parsers/SAXParser.hpp>
63#include "SAXCountHandlers.hpp"
64
65
66// ---------------------------------------------------------------------------
67//  This is a simple class that lets us do easy (though not terribly efficient)
68//  trancoding of XMLCh data to local code page for display.
69// ---------------------------------------------------------------------------
70class StrX
71{
72public :
73    // -----------------------------------------------------------------------
74    //  Constructors and Destructor
75    // -----------------------------------------------------------------------
76    StrX(const XMLCh* const toTranscode)
77    {
78        // Call the private transcoding method
79        fLocalForm = XMLString::transcode(toTranscode);
80    }
81
82    ~StrX()
83    {
84        XMLString::release(&fLocalForm);
85    }
86
87    // -----------------------------------------------------------------------
88    //  Getter methods
89    // -----------------------------------------------------------------------
90    const char* localForm() const
91    {
92        return fLocalForm;
93    }
94
95private :
96    // -----------------------------------------------------------------------
97    //  Private data members
98    //
99    //  fLocalForm
100    //      This is the local code page form of the string.
101    // -----------------------------------------------------------------------
102    char*   fLocalForm;
103};
104
105inline XERCES_STD_QUALIFIER ostream& operator<<(XERCES_STD_QUALIFIER ostream& target, const StrX& toDump)
106{
107    target << toDump.localForm();
108    return target;
109}
Note: See TracBrowser for help on using the repository browser.