Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
5e5852ee
Commit
5e5852ee
authored
Jun 15, 2011
by
Ralf Haferkamp
Committed by
Quanah Gibson-Mount
Jun 21, 2011
Browse files
Additional getter methods for LDAPModification
parent
6e6cefe0
Changes
2
Hide whitespace changes
Inline
Side-by-side
contrib/ldapc++/src/LDAPModification.cpp
View file @
5e5852ee
...
...
@@ -38,3 +38,11 @@ LDAPMod* LDAPModification::toLDAPMod() const {
}
return
ret
;
}
const
LDAPAttribute
*
LDAPModification
::
getAttribute
()
const
{
return
&
m_attr
;
}
LDAPModification
::
mod_op
LDAPModification
::
getOperation
()
const
{
return
m_mod_op
;
}
contrib/ldapc++/src/LDAPModification.h
View file @
5e5852ee
...
...
@@ -18,6 +18,9 @@ class LDAPModification{
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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment