C++



Articles tagged 'c++'

2005-03-14
XML with C++ - To DOM or not to DOM

After my rant earlier today, I've decided to toy around with writing my own C++ DOM parser, mostly as an educational experience, but perhaps it'll turn out to be useful.

My initial thought is to leverage boost::shared_ptr to get an interface that is as close to the Java ...

2005-03-14
C++ XML Parser rant

I've been toying with Atom over the weekend. Or should I say I've been frustrating over the quality (or lack of) C++ XML parsers.

We have the C++ version of Xerces, but I've never liked it. Probably because it's refusal to use namespaces and exceptions, and the cumbersome (and slow!) ...

2005-03-08
Compile time Towers of Hanoi

A short and simple C++ template meta-programming implementation of the Towers of Hanoi