aboutsummaryrefslogtreecommitdiff
path: root/liblogdiag/ld-library.h
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2012-08-29 15:31:40 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2012-10-08 07:29:43 +0200
commita915bf44960dad3180790a06c57aba7904774738 (patch)
treed57b145a32a098a288d830c71e89e761073349a8 /liblogdiag/ld-library.h
parent00a50737f365f6d99c4cb43b41fe5085f70bf178 (diff)
downloadlogdiag-a915bf44960dad3180790a06c57aba7904774738.tar.gz
logdiag-a915bf44960dad3180790a06c57aba7904774738.tar.xz
logdiag-a915bf44960dad3180790a06c57aba7904774738.zip
Remove category management from LdLibrary.
Now it uses a special hidden `/' root category. Also removed ld_library_clear() momentarily, for it has no users.
Diffstat (limited to 'liblogdiag/ld-library.h')
-rw-r--r--liblogdiag/ld-library.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/liblogdiag/ld-library.h b/liblogdiag/ld-library.h
index 7521492..667d861 100644
--- a/liblogdiag/ld-library.h
+++ b/liblogdiag/ld-library.h
@@ -60,14 +60,7 @@ GType ld_library_get_type (void) G_GNUC_CONST;
LdLibrary *ld_library_new (void);
gboolean ld_library_load (LdLibrary *self, const gchar *directory);
LdSymbol *ld_library_find_symbol (LdLibrary *self, const gchar *identifier);
-void ld_library_clear (LdLibrary *self);
-
-/* FIXME: This duplicates a part of LdSymbolCategory. */
-gboolean ld_library_insert_category (LdLibrary *self,
- LdSymbolCategory *category, gint pos);
-void ld_library_remove_category (LdLibrary *self,
- LdSymbolCategory *category);
-const GSList *ld_library_get_categories (LdLibrary *self);
+LdSymbolCategory *ld_library_get_root (LdLibrary *self);
G_END_DECLS