summaryrefslogtreecommitdiff
path: root/src/yelp-info.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/yelp-info.h')
-rw-r--r--src/yelp-info.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/yelp-info.h b/src/yelp-info.h
deleted file mode 100644
index d592dd72..00000000
--- a/src/yelp-info.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
-/*
- * Copyright (C) 2007 Don Scorgie <dscorgie@svn.gnome.org>
- *
- * 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.
- *
- * Author: Don Scorgie <dscorgie@svn.gnome.org>
- */
-
-#ifndef __YELP_INFO_H__
-#define __YELP_INFO_H__
-
-#include <glib-object.h>
-
-#include "yelp-document.h"
-
-#define YELP_TYPE_INFO (yelp_info_get_type ())
-#define YELP_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), YELP_TYPE_INFO, YelpInfo))
-#define YELP_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), YELP_TYPE_INFO, YelpInfoClass))
-#define YELP_IS_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), YELP_TYPE_INFO))
-#define YELP_IS_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), YELP_TYPE_INFO))
-#define YELP_INFO_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), YELP_TYPE_INFO, YelpInfoClass))
-
-typedef struct _YelpInfo YelpInfo;
-typedef struct _YelpInfoClass YelpInfoClass;
-typedef struct _YelpInfoPriv YelpInfoPriv;
-
-struct _YelpInfo {
- YelpDocument parent;
- YelpInfoPriv *priv;
-};
-
-struct _YelpInfoClass {
- YelpDocumentClass parent_class;
-};
-
-GType yelp_info_get_type (void);
-YelpDocument * yelp_info_new (gchar *uri);
-
-#endif /* __YELP_INFO_H__ */