]> saetta.ns0.it Git - zakautho/libzakautho/commitdiff
Added skeleton files for AutozResource and AutozRole.
authorAndrea Zagli <azagli@libero.it>
Mon, 21 Jun 2010 16:37:00 +0000 (18:37 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 21 Jun 2010 16:37:00 +0000 (18:37 +0200)
src/Makefile.am
src/resource.c [new file with mode: 0644]
src/resource.h [new file with mode: 0644]
src/role.c [new file with mode: 0644]
src/role.h [new file with mode: 0644]

index 5bc3211d4b27de3324ad9518caae075fa0b7ac19..11d21f12f1a00b3c9b2e39bc851f27010f8480e4 100644 (file)
@@ -4,10 +4,14 @@ AM_CPPFLAGS = $(AUTOZ_CFLAGS)
 
 lib_LTLIBRARIES = libautoz.la
 
-libautoz_la_SOURCES = autoz.c
+libautoz_la_SOURCES = autoz.c \
+                      resource.c \
+                      role.c
 
 libautoz_la_LDFLAGS = -no-undefined
 
-libautoz_include_HEADERS = autoz.h
+libautoz_include_HEADERS = autoz.h \
+                           resource.h \
+                           role.h
 
 libautoz_includedir = $(includedir)/libautoz
diff --git a/src/resource.c b/src/resource.c
new file mode 100644 (file)
index 0000000..d1253c8
--- /dev/null
@@ -0,0 +1,111 @@
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include "autoz_resource.h"
+
+static void autoz_resource_class_init (AutozResourceClass *class);
+static void autoz_resource_init (AutozResource *form);
+
+static void autoz_resource_set_property (GObject *object,
+                               guint property_id,
+                               const GValue *value,
+                               GParamSpec *pspec);
+static void autoz_resource_get_property (GObject *object,
+                               guint property_id,
+                               GValue *value,
+                               GParamSpec *pspec);
+
+#define AUTOZ_RESOURCE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_AUTOZ_RESOURCE, AutozResourcePrivate))
+
+typedef struct _AutozResourcePrivate AutozResourcePrivate;
+struct _AutozResourcePrivate
+       {
+               gpointer foo;
+       };
+
+G_DEFINE_TYPE (AutozResource, autoz_resource, G_TYPE_OBJECT)
+
+static void
+autoz_resource_class_init (AutozResourceClass *class)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (class);
+
+       object_class->set_property = autoz_resource_set_property;
+       object_class->get_property = autoz_resource_get_property;
+
+       g_type_class_add_private (object_class, sizeof (AutozResourcePrivate));
+}
+
+static void
+autoz_resource_init (AutozResource *form)
+{
+       AutozResourcePrivate *priv = AUTOZ_RESOURCE_GET_PRIVATE (form);
+}
+
+/**
+ * autoz_resource_new:
+ *
+ * Returns: the newly created #AutozResource object.
+ */
+AutozResource
+*autoz_resource_new ()
+{
+
+       return AUTOZ_RESOURCE (g_object_new (autoz_resource_get_type (), NULL));
+}
+
+/* PRIVATE */
+static void
+autoz_resource_set_property (GObject *object,
+                   guint property_id,
+                   const GValue *value,
+                   GParamSpec *pspec)
+{
+       AutozResource *form = (AutozResource *)object;
+
+       AutozResourcePrivate *priv = AUTOZ_RESOURCE_GET_PRIVATE (form);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+         }
+}
+
+static void
+autoz_resource_get_property (GObject *object,
+                   guint property_id,
+                   GValue *value,
+                   GParamSpec *pspec)
+{
+       AutozResource *form = (AutozResource *)object;
+
+       AutozResourcePrivate *priv = AUTOZ_RESOURCE_GET_PRIVATE (form);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+         }
+}
diff --git a/src/resource.h b/src/resource.h
new file mode 100644 (file)
index 0000000..2284462
--- /dev/null
@@ -0,0 +1,59 @@
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef __LIBAUTOZ_RESOURCE_H__
+#define __LIBAUTOZ_RESOURCE_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_AUTOZ_RESOURCE                 (autoz_resource_get_type ())
+#define AUTOZ_RESOURCE(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_AUTOZ_RESOURCE, AutozResource))
+#define AUTOZ_RESOURCE_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_AUTOZ_RESOURCE, AutozResourceClass))
+#define IS_AUTOZ_RESOURCE(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_AUTOZ_RESOURCE))
+#define IS_AUTOZ_RESOURCE_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_AUTOZ_RESOURCE))
+#define AUTOZ_RESOURCE_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_AUTOZ_RESOURCE, AutozResourceClass))
+
+
+typedef struct _AutozResource AutozResource;
+typedef struct _AutozResourceClass AutozResourceClass;
+
+struct _AutozResource
+       {
+               GObject parent;
+       };
+
+struct _AutozResourceClass
+       {
+               GObjectClass parent_class;
+       };
+
+GType autoz_resource_get_type (void) G_GNUC_CONST;
+
+
+AutozResource *autoz_resource_new (void);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBAUTOZ_RESOURCE_H__ */
diff --git a/src/role.c b/src/role.c
new file mode 100644 (file)
index 0000000..58d2cb0
--- /dev/null
@@ -0,0 +1,111 @@
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include "autoz_role.h"
+
+static void autoz_role_class_init (AutozRoleClass *class);
+static void autoz_role_init (AutozRole *form);
+
+static void autoz_role_set_property (GObject *object,
+                               guint property_id,
+                               const GValue *value,
+                               GParamSpec *pspec);
+static void autoz_role_get_property (GObject *object,
+                               guint property_id,
+                               GValue *value,
+                               GParamSpec *pspec);
+
+#define AUTOZ_ROLE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_AUTOZ_ROLE, AutozRolePrivate))
+
+typedef struct _AutozRolePrivate AutozRolePrivate;
+struct _AutozRolePrivate
+       {
+               gpointer foo;
+       };
+
+G_DEFINE_TYPE (AutozRole, autoz_role, G_TYPE_OBJECT)
+
+static void
+autoz_role_class_init (AutozRoleClass *class)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (class);
+
+       object_class->set_property = autoz_role_set_property;
+       object_class->get_property = autoz_role_get_property;
+
+       g_type_class_add_private (object_class, sizeof (AutozRolePrivate));
+}
+
+static void
+autoz_role_init (AutozRole *form)
+{
+       AutozRolePrivate *priv = AUTOZ_ROLE_GET_PRIVATE (form);
+}
+
+/**
+ * autoz_role_new:
+ *
+ * Returns: the newly created #AutozRole object.
+ */
+AutozRole
+*autoz_role_new ()
+{
+
+       return AUTOZ_ROLE (g_object_new (autoz_role_get_type (), NULL));
+}
+
+/* PRIVATE */
+static void
+autoz_role_set_property (GObject *object,
+                   guint property_id,
+                   const GValue *value,
+                   GParamSpec *pspec)
+{
+       AutozRole *form = (AutozRole *)object;
+
+       AutozRolePrivate *priv = AUTOZ_ROLE_GET_PRIVATE (form);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+         }
+}
+
+static void
+autoz_role_get_property (GObject *object,
+                   guint property_id,
+                   GValue *value,
+                   GParamSpec *pspec)
+{
+       AutozRole *form = (AutozRole *)object;
+
+       AutozRolePrivate *priv = AUTOZ_ROLE_GET_PRIVATE (form);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+         }
+}
diff --git a/src/role.h b/src/role.h
new file mode 100644 (file)
index 0000000..61c39f1
--- /dev/null
@@ -0,0 +1,59 @@
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef __LIBAUTOZ_ROLE_H__
+#define __LIBAUTOZ_ROLE_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_AUTOZ_ROLE                 (autoz_role_get_type ())
+#define AUTOZ_ROLE(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_AUTOZ_ROLE, AutozRole))
+#define AUTOZ_ROLE_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_AUTOZ_ROLE, AutozRoleClass))
+#define IS_AUTOZ_ROLE(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_AUTOZ_ROLE))
+#define IS_AUTOZ_ROLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_AUTOZ_ROLE))
+#define AUTOZ_ROLE_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_AUTOZ_ROLE, AutozRoleClass))
+
+
+typedef struct _AutozRole AutozRole;
+typedef struct _AutozRoleClass AutozRoleClass;
+
+struct _AutozRole
+       {
+               GObject parent;
+       };
+
+struct _AutozRoleClass
+       {
+               GObjectClass parent_class;
+       };
+
+GType autoz_role_get_type (void) G_GNUC_CONST;
+
+
+AutozRole *autoz_role_new (void);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBAUTOZ_ROLE_H__ */