glibmm r502 - in trunk: . gio/src
- From: markoa svn gnome org
- To: svn-commits-list gnome org
- Subject: glibmm r502 - in trunk: . gio/src
- Date: Thu, 10 Jan 2008 21:05:49 +0000 (GMT)
Author: markoa
Date: Thu Jan 10 21:05:48 2008
New Revision: 502
URL: http://svn.gnome.org/viewvc/glibmm?rev=502&view=rev
Log:
2008-01-10 Marko Anastasov <marko anastasov gmail com>
* gio/src/appinfo.ccg:
* gio/src/appinfo.hg:
* gio/src/Makefile_list_of_hg.am_fragment:
Added AppInfo, with only two methods before we see why it
doesn't get included in the build.
Added:
trunk/gio/src/appinfo.ccg
trunk/gio/src/appinfo.hg
Modified:
trunk/ChangeLog
trunk/gio/src/Makefile_list_of_hg.am_fragment
Modified: trunk/gio/src/Makefile_list_of_hg.am_fragment
==============================================================================
--- trunk/gio/src/Makefile_list_of_hg.am_fragment (original)
+++ trunk/gio/src/Makefile_list_of_hg.am_fragment Thu Jan 10 21:05:48 2008
@@ -5,7 +5,7 @@
files_posix_hg =
files_win32_hg =
-files_general_hg = asyncresult.hg cancellable.hg drive.hg file.hg fileattribute.hg fileenumerator.hg fileicon.hg fileinfo.hg fileinputstream.hg fileoutputstream.hg icon.hg inputstream.hg loadableicon.hg mountoperation.hg outputstream.hg simpleasyncresult.hg volume.hg
+files_general_hg = appinfo.hg asyncresult.hg cancellable.hg drive.hg file.hg fileattribute.hg fileenumerator.hg fileicon.hg fileinfo.hg fileinputstream.hg fileoutputstream.hg icon.hg inputstream.hg loadableicon.hg mountoperation.hg outputstream.hg simpleasyncresult.hg volume.hg
include $(top_srcdir)/build_shared/Makefile_build_gensrc.am_fragment
Added: trunk/gio/src/appinfo.ccg
==============================================================================
--- (empty file)
+++ trunk/gio/src/appinfo.ccg Thu Jan 10 21:05:48 2008
@@ -0,0 +1,20 @@
+// -*- 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 <gio/gio.h>
Added: trunk/gio/src/appinfo.hg
==============================================================================
--- (empty file)
+++ trunk/gio/src/appinfo.hg Thu Jan 10 21:05:48 2008
@@ -0,0 +1,41 @@
+// -*- 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 <gio/gio.h>
+
+#include <string>
+#include <glibmm/interface.h>
+//#include <glibmm/object.h>
+
+_DEFS(giomm,gio)
+_PINCLUDE(glibmm/private/interface_p.h)
+
+namespace Gio
+{
+
+class AppInfo : public Glib::Interface
+{
+ _CLASS_INTERFACE(AppInfo, GAppInfo, G_APP_INFO, GAppInfoIface)
+
+public:
+ _WRAP_METHOD(std::string get_id() const, g_app_info_get_id)
+ _WRAP_METHOD(std::string get_name() const, g_app_info_get_name)
+};
+
+} // namespace Gio
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]