Re: Avoiding string break...
- From: michi7x7 <mailing-lists michi7x7 de>
- To: gtkmm-list gnome org
- Subject: Re: Avoiding string break...
- Date: Mon, 03 May 2010 21:44:04 +0200
----- Original Message ----
Does exist any foreseen solution to avoid the classical string break
by the '\0' character ?
(I use Gio::receive& Gio::send()...)
Glus
If you use a std::string the string should be able to contain '\0'.
For example:
Gio::IOStream io_stream;
Glib::RefPtr<Gio::Outputstream> out = io_stream->get_output_stream();
std::string str("ABC\0DEF");
out->send(str);
But I'm not sure about that...
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]