diff options
author | José Alburquerque <jaalburqu@svn.gnome.org> | 2012-09-20 17:45:09 -0400 |
---|---|---|
committer | José Alburquerque <jaalburqu@svn.gnome.org> | 2012-09-20 17:45:09 -0400 |
commit | d6e8b1013e2184990c4502e4eaac009edf248c57 (patch) | |
tree | 264bb21a8751341f6ce7d780175216a4296b415c /gio/src/pollableinputstream.ccg | |
parent | 21d6d4df0728a842c17dcbc00b18b647b817b670 (diff) | |
download | glibmm-d6e8b1013e2184990c4502e4eaac009edf248c57.tar.gz |
giomm: Add the PollableInputStream interface.
* gio/src/pollableinputstream.{ccg,hg}:
* gio/src/filelist.am: Add the sources adding the new interface
methods and virtual functions and include the sources in the build.
* gio/src/gio_extra_objects.defs: Mention the new object in this file
to avoid the gmmproc documentation warnings.
* gio/src/gio_vfuncs.defs: Add the new interface virtual functions but
alphabetize the existing entries by class name.
Diffstat (limited to 'gio/src/pollableinputstream.ccg')
-rw-r--r-- | gio/src/pollableinputstream.ccg | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gio/src/pollableinputstream.ccg b/gio/src/pollableinputstream.ccg new file mode 100644 index 00000000..8e0aacb7 --- /dev/null +++ b/gio/src/pollableinputstream.ccg @@ -0,0 +1,26 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + +/* Copyright (C) 2012 The giomm Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free + * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#include <gio/gio.h> +#include <giomm/cancellable.h> + +namespace Gio +{ + +} // namespace Gio |