--- /dev/null
+/*
+ * Copyright (C) 2019 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 <glib/gi18n-lib.h>
+
+#include "parser.h"
+
+static void zak_gorg_parser_class_init (ZakGorgParserClass *class);
+static void zak_gorg_parser_init (ZakGorgParser *zak_gorg_parser);
+
+static void zak_gorg_parser_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec);
+static void zak_gorg_parser_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec);
+
+static void zak_gorg_parser_dispose (GObject *gobject);
+static void zak_gorg_parser_finalize (GObject *gobject);
+
+#define ZAK_GORG_PARSER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_GORG_TYPE_PARSER, ZakGorgParserPrivate))
+
+struct _ZakGorgParser
+{
+ GObject parent_instance;
+};
+
+typedef struct _ZakGorgParserPrivate ZakGorgParserPrivate;
+struct _ZakGorgParserPrivate
+ {
+ GNode *nodes;
+ };
+
+G_DEFINE_TYPE_WITH_PRIVATE (ZakGorgParser, zak_gorg_parser, ZAK_GORG_TYPE_PARSER)
+
+static void
+zak_gorg_parser_class_init (ZakGorgParserClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ object_class->set_property = zak_gorg_parser_set_property;
+ object_class->get_property = zak_gorg_parser_get_property;
+ object_class->dispose = zak_gorg_parser_dispose;
+ object_class->finalize = zak_gorg_parser_finalize;
+}
+
+static void
+zak_gorg_parser_init (ZakGorgParser *zak_gorg_parser)
+{
+ ZakGorgParserPrivate *priv = ZAK_GORG_PARSER_GET_PRIVATE (zak_gorg_parser);
+
+ priv->nodes = NULL;
+}
+
+/**
+ * zak_gorg_parser_new_gfile:
+ * @gfile:
+ *
+ * Returns: the newly created #ZakGorgParser object.
+ */
+ZakGorgParser
+*zak_gorg_parser_new_gfile (GFile *gfile)
+{
+ ZakGorgParser *zak_gorg_parser;
+
+ zak_gorg_parser = ZAK_GORG_PARSER (g_object_new (zak_gorg_parser_get_type (), NULL));
+
+ return ZAK_GORG_PARSER (zak_gorg_parser);
+}
+
+/**
+ * zak_gorg_parser_new:
+ * @filename:
+ *
+ * Returns: the newly created #ZakGorgParser object.
+ */
+ZakGorgParser
+*zak_gorg_parser_new (const gchar *filename)
+{
+}
+
+/* PRIVATE */
+static void
+zak_gorg_parser_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ ZakGorgParser *zak_gorg_parser = (ZakGorgParser *)object;
+ ZakGorgParserPrivate *priv = zak_gorg_parser_get_instance_private (zak_gorg_parser);
+
+ switch (property_id)
+ {
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+zak_gorg_parser_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ ZakGorgParser *zak_gorg_parser = (ZakGorgParser *)object;
+ ZakGorgParserPrivate *priv = zak_gorg_parser_get_instance_private (zak_gorg_parser);
+
+ switch (property_id)
+ {
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+zak_gorg_parser_dispose (GObject *gobject)
+{
+ ZakGorgParser *zak_gorg_parser = (ZakGorgParser *)gobject;
+ ZakGorgParserPrivate *priv = zak_gorg_parser_get_instance_private (zak_gorg_parser);
+
+
+
+ GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
+ parent_class->dispose (gobject);
+}
+
+static void
+zak_gorg_parser_finalize (GObject *gobject)
+{
+ ZakGorgParser *zak_gorg_parser = (ZakGorgParser *)gobject;
+ ZakGorgParserPrivate *priv = zak_gorg_parser_get_instance_private (zak_gorg_parser);
+
+
+
+ GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
+ parent_class->finalize (gobject);
+}
--- /dev/null
+/*
+ * Copyright (C) 2019 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 __ZAK_GORG_PARSER_H__
+#define __ZAK_GORG_PARSER_H__
+
+
+#include <glib-object.h>
+#include <gio/gio.h>
+
+
+G_BEGIN_DECLS
+
+
+#define ZAK_GORG_TYPE_PARSER zak_gorg_parser_get_type ()
+G_DECLARE_FINAL_TYPE (ZakGorgParser, zak_gorg_parser, ZAK_GORG, PARSER, GObject)
+
+ZakGorgParser *zak_gorg_parser_new (const gchar *filename);
+ZakGorgParser *zak_gorg_parser_new_from_gfile (GFile *gfile);
+
+
+G_END_DECLS
+
+
+#endif /* __ZAK_GORG_PARSER_H__ */