diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-09 19:54:18 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-09 19:54:18 +0800 |
commit | 33c5910a3d9312ddb30de41eeda7d96d3b98a6c7 (patch) | |
tree | afe4b2b1b4daa44605f73356a3d447114189f74a /lib/ephy-start-here.h | |
parent | 50bb5af3f6a571e8e341d26cdd5b7a1b2178d8dd (diff) | |
download | gsoc2013-epiphany-33c5910a3d9312ddb30de41eeda7d96d3b98a6c7.tar gsoc2013-epiphany-33c5910a3d9312ddb30de41eeda7d96d3b98a6c7.tar.gz gsoc2013-epiphany-33c5910a3d9312ddb30de41eeda7d96d3b98a6c7.tar.bz2 gsoc2013-epiphany-33c5910a3d9312ddb30de41eeda7d96d3b98a6c7.tar.lz gsoc2013-epiphany-33c5910a3d9312ddb30de41eeda7d96d3b98a6c7.tar.xz gsoc2013-epiphany-33c5910a3d9312ddb30de41eeda7d96d3b98a6c7.tar.zst gsoc2013-epiphany-33c5910a3d9312ddb30de41eeda7d96d3b98a6c7.zip |
remove unused stuff
Diffstat (limited to 'lib/ephy-start-here.h')
-rw-r--r-- | lib/ephy-start-here.h | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/lib/ephy-start-here.h b/lib/ephy-start-here.h deleted file mode 100644 index df2b2ce26..000000000 --- a/lib/ephy-start-here.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (C) 2002 Marco Pesenti Gritti - * - * 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, 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 EPHY_START_HERE_H -#define EPHY_START_HERE_H - -#include <glib-object.h> - -#include "ephy-node.h" - -G_BEGIN_DECLS - -typedef struct EphyStartHereClass EphyStartHereClass; - -#define EPHY_START_HERE_TYPE (ephy_start_here_get_type ()) -#define EPHY_START_HERE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EPHY_START_HERE_TYPE, EphyStartHere)) -#define EPHY_START_HERE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EPHY_START_HERE_TYPE, EphyStartHereClass)) -#define IS_EPHY_START_HERE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EPHY_START_HERE_TYPE)) -#define IS_EPHY_START_HERE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EPHY_START_HERE_TYPE)) - -typedef struct EphyStartHere EphyStartHere; -typedef struct EphyStartHerePrivate EphyStartHerePrivate; - -struct EphyStartHere -{ - GObject parent; - EphyStartHerePrivate *priv; -}; - -struct EphyStartHereClass -{ - GObjectClass parent_class; -}; - -GType ephy_start_here_get_type (void); - -EphyStartHere *ephy_start_here_new (void); - -char *ephy_start_here_get_page (EphyStartHere *sh, - const char *id); - -const char *ephy_start_here_get_base_uri (EphyStartHere *sh); - -G_END_DECLS - -#endif |