blob: 25f5be422d274f10269b10c48d4d804441954a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// $OpenLDAP$
/*
* Copyright 2000-2022 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
|