aboutsummaryrefslogtreecommitdiff
path: root/liblogdiag/ld-library-pane.h
diff options
context:
space:
mode:
Diffstat (limited to 'liblogdiag/ld-library-pane.h')
-rw-r--r--liblogdiag/ld-library-pane.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/liblogdiag/ld-library-pane.h b/liblogdiag/ld-library-pane.h
deleted file mode 100644
index 3b0c98d..0000000
--- a/liblogdiag/ld-library-pane.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * ld-library-pane.h
- *
- * This file is a part of logdiag.
- * Copyright Přemysl Janouch 2011. All rights reserved.
- *
- * See the file LICENSE for licensing information.
- *
- */
-
-#ifndef __LD_LIBRARY_PANE_H__
-#define __LD_LIBRARY_PANE_H__
-
-G_BEGIN_DECLS
-
-
-#define LD_TYPE_LIBRARY_PANE (ld_library_pane_get_type ())
-#define LD_LIBRARY_PANE(obj) (G_TYPE_CHECK_INSTANCE_CAST \
- ((obj), LD_TYPE_LIBRARY_PANE, LdLibraryPane))
-#define LD_LIBRARY_PANE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST \
- ((klass), LD_TYPE_LIBRARY_PANE, LdLibraryPaneClass))
-#define LD_IS_LIBRARY_PANE(obj) (G_TYPE_CHECK_INSTANCE_TYPE \
- ((obj), LD_TYPE_LIBRARY_PANE))
-#define LD_IS_LIBRARY_PANE_CLASS(klass) (G_TYPE_CHECK_INSTANCE_TYPE \
- ((klass), LD_TYPE_LIBRARY_PANE))
-#define LD_LIBRARY_PANE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS \
- ((obj), LD_LIBRARY_PANE, LdLibraryPaneClass))
-
-typedef struct _LdLibraryPane LdLibraryPane;
-typedef struct _LdLibraryPanePrivate LdLibraryPanePrivate;
-typedef struct _LdLibraryPaneClass LdLibraryPaneClass;
-
-
-/**
- * LdLibraryPane:
- */
-struct _LdLibraryPane
-{
-/*< private >*/
- GtkVBox parent_instance;
- LdLibraryPanePrivate *priv;
-};
-
-struct _LdLibraryPaneClass
-{
-/*< private >*/
- GtkVBoxClass parent_class;
-};
-
-
-GType ld_library_pane_get_type (void) G_GNUC_CONST;
-
-GtkWidget *ld_library_pane_new (void);
-
-void ld_library_pane_set_library (LdLibraryPane *self, LdLibrary *library);
-LdLibrary *ld_library_pane_get_library (LdLibraryPane *self);
-
-
-G_END_DECLS
-
-#endif /* ! __LD_LIBRARY_PANE_H__ */