]> git.sur5r.net Git - openldap/blobdiff - contrib/ldapc++/src/LDAPExtResult.h
Merge remote-tracking branch 'origin/mdb.master'
[openldap] / contrib / ldapc++ / src / LDAPExtResult.h
index 09634b546845d7eb5ffc3f9dff08ff691804e4a2..d4d879416bb5730f419a22e85da959c66b78cec9 100644 (file)
@@ -1,5 +1,6 @@
+// $OpenLDAP$
 /*
- * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2013 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -33,17 +34,17 @@ class LDAPExtResult : public LDAPResult {
          * @returns The OID of the Extended Operation that has returned
          *          this result. 
          */
-        const string& getResponseOid() const;
+        const std::string& getResponseOid() const;
 
         /**
          * @returns If the result contained data this method will return
-         *          the data to the caller as a string.
+         *          the data to the caller as a std::string.
          */
-        const string& getResponse() const;
+        const std::string& getResponse() const;
 
     private:
-        string m_oid;
-        string m_data;
+        std::string m_oid;
+        std::string m_data;
 };
 
 #endif // LDAP_EXT_RESULT_H