]> git.sur5r.net Git - openldap/commitdiff
cleanup #includes, removed SUSE-specific stuff from comments
authorRalf Haferkamp <ralf@openldap.org>
Tue, 22 Jan 2008 14:31:54 +0000 (14:31 +0000)
committerRalf Haferkamp <ralf@openldap.org>
Tue, 22 Jan 2008 14:31:54 +0000 (14:31 +0000)
contrib/ldapc++/src/LDAPSchema.cpp
contrib/ldapc++/src/LDAPSchema.h

index 12acf2c3fe58e789504bf5d3adb942dd10ed108d..7cad7b107dc8d17353d52fad6010627dc3729de7 100644 (file)
@@ -3,11 +3,14 @@
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
-#include "debug.h"
-#include "StringList.h"
 #include "LDAPSchema.h"
 
 #include <ctype.h>
+#include <ldap.h>
+
+#include "debug.h"
+#include "StringList.h"
+
 
 using namespace std;
 
index 367e1fb0145a27cf358cf8131420440ba0ec5c39..ae097d61422c92102b50af12b1c1160da81cdc8b 100644 (file)
@@ -6,7 +6,6 @@
 #ifndef LDAP_SCHEMA_H
 #define LDAP_SCHEMA_H
 
-#include <ldap.h>
 #include <string>
 #include <map>
 
@@ -44,8 +43,8 @@ class LDAPSchema{
          * Fill the object_classes map
         * @param oc description of one objectclass (string returned by search
         * command), in form:
-        * "( SuSE.YaST.OC:5 NAME 'userTemplate' SUP objectTemplate STRUCTURAL
-        *    DESC 'User object template' MUST ( cn ) MAY ( secondaryGroup ))"
+        * "( 1.2.3.4.5 NAME '<name>' SUP <supname> STRUCTURAL
+        *    DESC '<description>' MUST ( <attrtype> ) MAY ( <attrtype> ))"
          */
        void setObjectClasses (const StringList &oc);
 
@@ -53,7 +52,7 @@ class LDAPSchema{
          * Fill the attr_types map
         * @param at description of one attribute type
         *  (string returned by search command), in form:
-        * "( SuSE.YaST.Attr:19 NAME ( 'skelDir' ) DESC ''
+        * "( 1.2.3.4.6 NAME ( '<name>' ) DESC '<desc>'
         *    EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )"
          */
        void setAttributeTypes (const StringList &at);