// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include _DEFS(giomm,gio) _PINCLUDE(giomm/private/outputstream_p.h) namespace Gio { /** UnixOutputStream implements OutputStream for writing to a a unix file * descriptor, including asynchronous operations. The file descriptor much be * selectable, so it doesn't work with opened files. * * @ingroup Streams * * @newin2p16 */ class UnixOutputStream : public Gio::OutputStream { _CLASS_GOBJECT(UnixOutputStream, GUnixOutputStream, G_UNIX_OUTPUT_STREAM, Gio::OutputStream, GOutputStream) _GTKMMPROC_WIN32_NO_WRAP protected: _WRAP_CTOR(UnixOutputStream(int fd, bool close_fd_at_close), g_unix_output_stream_new) public: _WRAP_CREATE(int fd, bool close_fd_at_close) }; } // namespace Gio