stringstream.h revision 819aa4f3956291e17dab9b2548dce90d4b195a03
#ifndef __INKSCAPE_IO_STRINGSTREAM_H__
#define __INKSCAPE_IO_STRINGSTREAM_H__
#include <glibmm.h>
#include "inkscapestream.h"
{
{
//#########################################################################
//# S T R I N G I N P U T S T R E A M
//#########################################################################
/**
* This class is for reading character from a Glib::ustring
*
*/
{
long position;
}; // class StringInputStream
//#########################################################################
//# S T R I N G O U T P U T S T R E A M
//#########################################################################
/**
* This class is for sending a stream to a Glib::ustring
*
*/
{
{ return buffer; }
{ buffer = ""; }
}; // class StringOutputStream
} // namespace IO
} // namespace Inkscape
#endif /* __INKSCAPE_IO_STRINGSTREAM_H__ */