]> git.sur5r.net Git - openldap/blob - contrib/gtk-tool/LdapEntry.h
Update contrib with latest from -devel, including php3-tool and gtk-tool.
[openldap] / contrib / gtk-tool / LdapEntry.h
1 #ifdef MY_LDAP_ENTRY_H
2 #define MY_LDAP_ENTRY_H
3 #include "common.h"
4 #include "gtk.h"
5 #include <lber.h>
6 #include <ldap.h>
7
8 class LdapEntry {
9 public:
10         char *dn;
11         LdapEntry **children;
12         LdapEntry* get_entries(LDAP *ld, char *base_dn, int level, char *filter);
13         Gtk_Tree* make_tree(LdapEntry *thing);
14 }
15 #endif