summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-06-23 09:25:25 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-06-23 09:25:25 +0000
commitccfaf01702cdf41bd1be20781203d06650cbfc8d (patch)
treea53d72c93fb247269e22f138c2d497681ba06a6b
parente02b4c3d27868ace0d36def64ddc3355c5087883 (diff)
downloadlasso-ccfaf01702cdf41bd1be20781203d06650cbfc8d.tar.gz
lasso-ccfaf01702cdf41bd1be20781203d06650cbfc8d.tar.xz
lasso-ccfaf01702cdf41bd1be20781203d06650cbfc8d.zip
*** empty log message ***
-rw-r--r--lasso/id-ff/environ.c83
-rw-r--r--lasso/id-ff/environ.h63
2 files changed, 0 insertions, 146 deletions
diff --git a/lasso/id-ff/environ.c b/lasso/id-ff/environ.c
deleted file mode 100644
index 2b2fa321..00000000
--- a/lasso/id-ff/environ.c
+++ /dev/null
@@ -1,83 +0,0 @@
-/* $Id$
- *
- * Lasso - A free implementation of the Liberty Alliance specifications.
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU 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 General Public License for more details.
- *
- * You should have received a copy of the GNU 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 <lasso/environs/environ.h>
-
-/*****************************************************************************/
-/* functions */
-/*****************************************************************************/
-
-
-/*****************************************************************************/
-/* public methods */
-/*****************************************************************************/
-
-
-/*****************************************************************************/
-/* instance and class init functions */
-/*****************************************************************************/
-
-static void
-lasso_environ_instance_init(LassoEnviron *environ)
-{
-}
-
-static void
-lasso_environ_class_init(LassoEnvironClass *class)
-{
-}
-
-GType lasso_environ_get_type() {
- static GType this_type = 0;
-
- if (!this_type) {
- static const GTypeInfo this_info = {
- sizeof (LassoEnvironClass),
- NULL,
- NULL,
- (GClassInitFunc) lasso_environ_class_init,
- NULL,
- NULL,
- sizeof(LassoEnviron),
- 0,
- (GInstanceInitFunc) lasso_environ_instance_init,
- };
-
- this_type = g_type_register_static(G_TYPE_OBJECT,
- "LassoEnviron",
- &this_info, 0);
- }
- return this_type;
-}
-
-LassoEnviron*
-lasso_environ_new()
-{
- LassoEnviron *environ;
-
- g_object_new(LASSO_TYPE_ENVIRON, NULL);
-
- return(environ);
-}
diff --git a/lasso/id-ff/environ.h b/lasso/id-ff/environ.h
deleted file mode 100644
index 14e79b01..00000000
--- a/lasso/id-ff/environ.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/* $Id$
- *
- * Lasso - A free implementation of the Liberty Alliance specifications.
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU 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 General Public License for more details.
- *
- * You should have received a copy of the GNU 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
- */
-
-#ifndef __LASSO_ENVIRON_H__
-#define __LASSO_ENVIRON_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-#include <lasso/xml/xml.h>
-
-#define LASSO_TYPE_ENVIRON (lasso_environ_get_type())
-#define LASSO_ENVIRON(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), LASSO_TYPE_ENVIRON, LassoEnviron))
-#define LASSO_ENVIRON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), LASSO_TYPE_ENVIRON, LassoEnvironClass))
-#define LASSO_IS_ENVIRON(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), LASSO_TYPE_ENVIRON))
-#define LASSP_IS_ENVIRON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LASSO_TYPE_ENVIRON))
-#define LASSO_ENVIRON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), LASSO_TYPE_ENVIRON, LassoEnvironClass))
-
-typedef struct _LassoEnviron LassoEnviron;
-typedef struct _LassoEnvironClass LassoEnvironClass;
-
-struct _LassoEnviron {
- GObject parent;
- /*< public >*/
- /*< private >*/
-};
-
-struct _LassoEnvironClass {
- GObjectClass parent;
-};
-
-LASSO_EXPORT GType lasso_environ_get_type (void);
-
-LASSO_EXPORT LassoEnviron *lasso_environ_new (void);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* __LASSO_ENVIRON_H__ */