mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
reworked #includes
This commit is contained in:
parent
3dc7480b8b
commit
ca7bf18fe8
@ -12,7 +12,6 @@
|
||||
#include "LDAPBindRequest.h"
|
||||
#include "LDAPCompareRequest.h"
|
||||
#include "LDAPDeleteRequest.h"
|
||||
#include "LDAPException.h"
|
||||
#include "LDAPExtRequest.h"
|
||||
#include "LDAPEntry.h"
|
||||
#include "LDAPModDNRequest.h"
|
||||
|
@ -13,6 +13,8 @@
|
||||
#include<ldap.h>
|
||||
#include<lber.h>
|
||||
|
||||
#include <LDAPEntry.h>
|
||||
#include <LDAPException.h>
|
||||
#include <LDAPMessageQueue.h>
|
||||
#include <LDAPConstraints.h>
|
||||
#include <LDAPModification.h>
|
||||
@ -20,9 +22,6 @@
|
||||
#include <LDAPUrl.h>
|
||||
#include <LDAPUrlList.h>
|
||||
|
||||
class LDAPEntry;
|
||||
class LDAPAttribute;
|
||||
|
||||
//* Main class for an asynchronous LDAP connection
|
||||
/**
|
||||
* This class represents an asynchronous connection to an LDAP-Server. It
|
||||
|
@ -7,6 +7,7 @@
|
||||
#include "debug.h"
|
||||
#include "LDAPEntry.h"
|
||||
|
||||
#include "LDAPAsynConnection.h"
|
||||
#include "LDAPException.h"
|
||||
|
||||
using namespace std;
|
||||
|
@ -8,9 +8,10 @@
|
||||
#define LDAP_ENTRY_H
|
||||
#include <ldap.h>
|
||||
|
||||
#include <LDAPAsynConnection.h>
|
||||
#include <LDAPAttributeList.h>
|
||||
|
||||
class LDAPAsynConnection;
|
||||
|
||||
/**
|
||||
* This class is used to store every kind of LDAP Entry.
|
||||
*/
|
||||
|
@ -10,7 +10,6 @@
|
||||
#include "LDAPMessageQueue.h"
|
||||
#include "LDAPRequest.h"
|
||||
#include "LDAPAsynConnection.h"
|
||||
#include "LDAPMessage.h"
|
||||
#include "LDAPResult.h"
|
||||
#include "LDAPSearchReference.h"
|
||||
#include "LDAPSearchRequest.h"
|
||||
|
@ -10,9 +10,9 @@
|
||||
#include <stack>
|
||||
|
||||
#include <LDAPUrlList.h>
|
||||
#include <LDAPMessage.h>
|
||||
|
||||
class LDAPAsynConnection;
|
||||
class LDAPMsg;
|
||||
class LDAPRequest;
|
||||
class LDAPSearchRequest;
|
||||
class LDAPUrl;
|
||||
|
Loading…
Reference in New Issue
Block a user