]> git.sur5r.net Git - openldap/blobdiff - contrib/ldapc++/src/LDAPAttrType.h
support for syntax and equality matching rule
[openldap] / contrib / ldapc++ / src / LDAPAttrType.h
index cb35f4032d70c23c2cee912e444da6632e9c1b5b..3042ab5a3342869b38ae5e0625357ef26193d70f 100644 (file)
@@ -22,7 +22,7 @@ using namespace std;
 class LDAPAttrType{
     private :
        StringList names;
-       string desc, oid, equality, syntax;
+       string desc, oid;
        bool single;
        
     public :
@@ -63,16 +63,6 @@ class LDAPAttrType{
         */
        string getOid ();
 
-       /**
-         * Returns equality matching rule
-        */
-       string getEquality ();
-       
-       /**
-        * Returns attribute syntax definition
-        */
-       string getSyntax ();
-
        /**
         * Returns attribute name (first one if there are more of them)
         */
@@ -84,14 +74,12 @@ class LDAPAttrType{
        StringList getNames();
        
        /**
-        * Returns true if attribute type allows only single value
+        * Returns true if attribute type hllows only single value
         */
        bool isSingle();
        
        void setNames (char **at_names);
        void setDesc (char *at_desc);
-       void setEquality (char *at_equality_oid);
-       void setSyntax (char *at_syntax_oid);      
        void setOid (char *at_oid);
        void setSingle (int at_single_value);