up vote 4 down vote favorite
3
share [g+] share [fb]

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?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Maybe this?

link|improve this answer
It's a work of art as far as I'm concerned. :D – Alex B Sep 29 '09 at 13:37
feedback

I think you're probably looking for Arabica.

link|improve this answer
That site seems to be infested with spam-comments. :-( – Wim ten Brink Sep 28 '09 at 9:12
Unfortunately I see no similarities in Arabica. – dalle Sep 28 '09 at 9:16
feedback

Your Answer

 
or
required, but never shown

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