loudmouth/lm-asyncns-resolver.c
changeset 457 9eeae02afc18
child 471 a7cf42557aef
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/loudmouth/lm-asyncns-resolver.c	Mon Jul 14 00:02:50 2008 +0200
@@ -0,0 +1,80 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2008 Imendio AB
+ *
+ * This program 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 of the
+ * License, or (at your option) any later version.
+ *
+ * This program 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 program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include <config.h>
+
+#include "lm-marshal.h"
+#include "lm-asyncns-resolver.h"
+
+#define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), LM_TYPE_ASYNCNS_RESOLVER, LmAsyncnsResolverPriv))
+
+typedef struct LmAsyncnsResolverPriv LmAsyncnsResolverPriv;
+struct LmAsyncnsResolverPriv {
+	gint my_prop;
+};
+
+static void     asyncns_resolver_finalize      (GObject     *object);
+static void     asyncns_resolver_lookup        (LmResolver  *resolver);
+static void     asyncns_resolver_cancel        (LmResolver  *resolver);
+
+G_DEFINE_TYPE (LmAsyncnsResolver, lm_asyncns_resolver, LM_TYPE_RESOLVER)
+
+static void
+lm_asyncns_resolver_class_init (LmAsyncnsResolverClass *class)
+{
+	GObjectClass    *object_class = G_OBJECT_CLASS (class);
+        LmResolverClass *resolver_class = LM_RESOLVER_CLASS (class);
+
+	object_class->finalize = asyncns_resolver_finalize;
+
+        resolver_class->lookup = asyncns_resolver_lookup;
+        resolver_class->cancel = asyncns_resolver_cancel;
+
+	g_type_class_add_private (object_class, sizeof (LmAsyncnsResolverPriv));
+}
+
+static void
+lm_asyncns_resolver_init (LmAsyncnsResolver *asyncns_resolver)
+{
+	LmAsyncnsResolverPriv *priv;
+
+	priv = GET_PRIV (asyncns_resolver);
+}
+
+static void
+asyncns_resolver_finalize (GObject *object)
+{
+	LmAsyncnsResolverPriv *priv;
+
+	priv = GET_PRIV (object);
+
+	(G_OBJECT_CLASS (lm_asyncns_resolver_parent_class)->finalize) (object);
+}
+
+static void
+asyncns_resolver_lookup (LmResolver *resolver)
+{
+} 
+
+static void
+asyncns_resolver_cancel (LmResolver *resolver)
+{
+}
+