From: Andrea Zagli Date: Mon, 21 Jun 2010 16:37:00 +0000 (+0200) Subject: Added skeleton files for AutozResource and AutozRole. X-Git-Tag: 0.0.1~19 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=376df88a59f500c8bd094d1bf91d40f8913ca149;p=zakautho%2Flibzakautho Added skeleton files for AutozResource and AutozRole. --- diff --git a/src/Makefile.am b/src/Makefile.am index 5bc3211..11d21f1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 index 0000000..d1253c8 --- /dev/null +++ b/src/resource.c @@ -0,0 +1,111 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 +#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 index 0000000..2284462 --- /dev/null +++ b/src/resource.h @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 +#include + + +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 index 0000000..58d2cb0 --- /dev/null +++ b/src/role.c @@ -0,0 +1,111 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 +#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 index 0000000..61c39f1 --- /dev/null +++ b/src/role.h @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * 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 +#include + + +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__ */