mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-12 10:54:48 +08:00
31 lines
579 B
C++
31 lines
579 B
C++
// $OpenLDAP$
|
|
/*
|
|
* Copyright 2000-2014 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
|
|
#ifndef LDAP_MODIFICATION_H
|
|
#define LDAP_MODIFICATION_H
|
|
|
|
#include <ldap.h>
|
|
#include <LDAPAttribute.h>
|
|
|
|
class LDAPModification{
|
|
public:
|
|
enum mod_op {OP_ADD, OP_DELETE, OP_REPLACE};
|
|
|
|
LDAPModification(const LDAPAttribute& attr, mod_op op);
|
|
LDAPMod *toLDAPMod() const;
|
|
|
|
const LDAPAttribute* getAttribute() const;
|
|
mod_op getOperation() const;
|
|
|
|
private:
|
|
LDAPAttribute m_attr;
|
|
mod_op m_mod_op;
|
|
|
|
};
|
|
#endif //LDAP_MODIFICATION_H
|
|
|