vote up 4 vote down star
3

Some time ago I saw a XML library for C++ which heavily utilized operator overloading, allowing for cute syntax similar to the following:

#include <iostream>
#include <some_xml_library/some_header.hpp>

using namespace some_xml_library;

int main()
{
    elem_t div;
    doc_t d = _ <div>"hello"<!div> _;

    std::cout << d;
}

Output:

<div>hello</div>

IIRC the library also had full support for attributes and nested elements.

Have I dreamt this, or does anyone know what this library is called?

flag

80% accept rate

2 Answers

vote up 4 vote down check

Maybe this?

link|flag
It's a work of art as far as I'm concerned. :D – Checkers Sep 29 at 13:37
vote up 0 vote down

I think you're probably looking for Arabica.

link|flag
That site seems to be infested with spam-comments. :-( – Workshop Alex Sep 28 at 9:12
Unfortunately I see no similarities in Arabica. – dalle Sep 28 at 9:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.