Click here to Skip to main content
15,886,578 members
Articles / Programming Languages / XML

PugXML - A Small, Pugnacious XML Parser

Rate me:
Please Sign up or sign in to vote.
4.98/5 (156 votes)
11 Jan 200324 min read 1.3M   14.2K   286  
Discussion of techniques for fast, robust, light-weight XML parsing.
//stdafx.h

#pragma once

#define WIN32_LEAN_AND_MEAN

#include <stdio.h>
#include <tchar.h>
#include <ctype.h>
#include <wtypes.h>
#include <crtdbg.h>
#include <iostream>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I'm a developer at a medical technology company. I've worked on various healthcare-oriented projects, from computer-aided surgery (visualization, intraoperative navigation, path planning for tumor stereotaxis), clinical intelligence systems, etc.

In my time outside of work, which is minimal, I read Science Fiction novels, play the piano, and spend time with my friends down at the lake - a gaggle of Branta Canadensis.

Have *you* hugged a goose today?

Comments and Discussions