mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
27 lines
771 B
C++
27 lines
771 B
C++
// $OpenLDAP$
|
|
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#ifndef LDAP_DELETE_REQUEST_H
|
|
#define LDAP_DELETE_REQUEST_H
|
|
|
|
#include <LDAPRequest.h>
|
|
class LDAPMessageQueue;
|
|
|
|
class LDAPDeleteRequest : public LDAPRequest{
|
|
public :
|
|
LDAPDeleteRequest(const LDAPDeleteRequest& req);
|
|
LDAPDeleteRequest(const std::string& dn, LDAPAsynConnection *connect,
|
|
const LDAPConstraints *cons, bool isReferral=false,
|
|
const LDAPRequest* parent=0);
|
|
virtual ~LDAPDeleteRequest();
|
|
virtual LDAPMessageQueue* sendRequest();
|
|
virtual LDAPRequest* followReferral(LDAPMsg* refs);
|
|
|
|
private :
|
|
std::string m_dn;
|
|
};
|
|
#endif //LDAP_DELETE_REQUEST_H
|