Skip to content

Commit

Permalink
updates for doxygen and qpp
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnich committed Dec 9, 2022
1 parent ef89d0c commit 6ed49a7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/QC_LdapClient.qpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public:

/** @defgroup ldap_scope_constants LDAP Search Scope Constants
*/
//@{
///@{
namespace OpenLdap;

//! limits the search scope to the object itself
Expand All @@ -85,11 +85,11 @@ const LDAP_SCOPE_SUBTREE = LDAP_SCOPE_SUBTREE;
/** this option is only supported on LDAP servers that support the LDAP Subordinates Search Scope extension
*/
const LDAP_SCOPE_CHILDREN = LDAP_SCOPE_CHILDREN;
//@}
///@}

/** @defgroup ldap_modify_constants LDAP Modify Constants
*/
//@{
///@{
namespace OpenLdap;
//! for adding an entry
const LDAP_MOD_ADD = "add";
Expand All @@ -99,16 +99,16 @@ const LDAP_MOD_DELETE = "delete";

//! for replacing an entry
const LDAP_MOD_REPLACE = "replace";
//@}
///@}

/** @defgroup ldap_constants LDAP Constants
*/
//@{
///@{
namespace OpenLdap;

//! the default timeout value
const DefaultTimeout = 60s;
//@}
///@}

//! The LdapClient class
/**
Expand Down

0 comments on commit 6ed49a7

Please sign in to comment.