diff options
author | José Alburquerque <jaalburqu@svn.gnome.org> | 2010-08-05 01:19:52 -0400 |
---|---|---|
committer | José Alburquerque <jaalburqu@svn.gnome.org> | 2010-08-05 01:24:04 -0400 |
commit | 9650aed072c41e6cbc0a9f857d237a03f7141550 (patch) | |
tree | de6a57d7627cbdc422c25e3679d3d55cedab7034 /gio/src/unixcredentialsmessage.ccg | |
parent | 071308e555d087f41a0aa9af6689ed37e6b4834a (diff) | |
download | glibmm-9650aed072c41e6cbc0a9f857d237a03f7141550.tar.gz |
giomm: Add SocketControlMessage, Unix[Credentials|FD]Message classes.
* gio/src/socketcontrolmessage.{ccg,hg}:
* gio/src/filelist.am: Add SocketControlMessage sources and mention
the .hg file so the sources are built.
* gio/src/gio_vfuncs.defs: Add virtual functions for
GSocketControlMessage.
* gio/src/unixcredentialsmessage.{ccg,hg}:
* gio/src/unixfdmessage.{ccg,hg}: Add UnixCredentialsMessage and
UnixFDmessage sources but don't mention them because the gio include
paradignm seems to be causing the C functions not to be declared upon
compilation.
* tools/extra_defs_gen/generate_defs_gio.cc: Add the
GUnixCredentialsMessage and the GUnixFDMessage types but commented out
because the types also appear not to be defined because of the gio
include paradigm.
* tools/m4/convert_gio.m4: Add necessary conversions.
Diffstat (limited to 'gio/src/unixcredentialsmessage.ccg')
-rw-r--r-- | gio/src/unixcredentialsmessage.ccg | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gio/src/unixcredentialsmessage.ccg b/gio/src/unixcredentialsmessage.ccg new file mode 100644 index 00000000..372e8a13 --- /dev/null +++ b/gio/src/unixcredentialsmessage.ccg @@ -0,0 +1,26 @@ +// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- + +/* Copyright (C) 2010 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/credentials.h> + +namespace Gio +{ + +} // namespace Gio |