diff src/dynamic-ld.h @ 3523:b80bbb43a1a9

[project @ 2000-02-02 10:25:52 by jwe]
author jwe
date Wed, 02 Feb 2000 10:26:25 +0000
parents 2efa28a91e7a
children 7e4d5b5520e5
line wrap: on
line diff
--- a/src/dynamic-ld.h	Wed Feb 02 06:32:04 2000 +0000
+++ b/src/dynamic-ld.h	Wed Feb 02 10:26:25 2000 +0000
@@ -38,9 +38,9 @@
 
   virtual ~octave_dynamic_loader (void) { }
 
-  static bool load (const string& fcn_name);
+  static bool load (const std::string& fcn_name);
 
-  static bool remove (const string& fcn_name, octave_shlib& shl);
+  static bool remove (const std::string& fcn_name, octave_shlib& shl);
 
 private:
 
@@ -54,15 +54,15 @@
 
   static bool instance_ok (void);
 
-  bool do_load (const string& fcn_name);
+  bool do_load (const std::string& fcn_name);
 
-  bool do_remove (const string& fcn_name, octave_shlib& shl);
+  bool do_remove (const std::string& fcn_name, octave_shlib& shl);
 
   static bool doing_load;
 
 protected:
 
-  static string mangle_name (const string& name);
+  static std::string mangle_name (const std::string& name);
 };
 
 #endif