mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
18 lines
337 B
C++
18 lines
337 B
C++
#ifndef GTK_LDAPITEM_H
|
|
#define GTK_LDAPITEM_H
|
|
#include "cpluscommon.h"
|
|
#include "gtk.h"
|
|
#include <Gtk_LdapTreeItem.h>
|
|
class Gtk_LdapTreeItem;
|
|
|
|
class Gtk_LdapItem {
|
|
public:
|
|
Gtk_Tree *tree;
|
|
Gtk_LdapTreeItem *treeitem;
|
|
G_List<gchar> *value_list;
|
|
char *attribute_name;
|
|
G_List<Gtk_LdapItem> *attribute_list;
|
|
char *entry_name;
|
|
};
|
|
#endif
|