![]() |
Plus | - Minimal XML for C++ | (Version 0.9.2) | Giancarlo Niccolai |
00001 /* 00002 Mini XML lib PLUS for C++ 00003 00004 Utilities 00005 00006 Author: Giancarlo Niccolai <gian@niccolai.ws> 00007 00008 $Id: mxml_utility.h,v 1.1.1.1 2003/08/13 00:13:29 jonnymind Exp $ 00009 */ 00010 00011 #ifndef MXML_UTILITY_H 00012 #define MXML_UTILITY_H 00013 00014 #include <ostream> 00015 #include <string> 00016 00017 namespace MXML { 00018 00019 std::string escape( const std::string unescaped ); 00020 std::ostream & writeEscape( std::ostream &stream, const std::string &src ); 00021 char parseEntity( const std::string entity ); 00022 00023 } 00024 00025 #endif 00026 00027 /* end of utility.h */