| 43 | using namespace cpptempl::impl; |
| 44 | |
| 45 | std::string gettext(node_ptr node, data_map &data) |
| 46 | { |
| 47 | ostringstream stream; |
| 48 | node->gettext(stream, data); |
| 49 | return stream.str(); |
| 50 | } |
| 51 | |
| 52 | // ------------------------------------------------------------------------------------------ |
| 53 |
no test coverage detected