]> www.ginac.de Git - ginac.git/blobdiff - ginac/isospin.h
- Derivatives are now assembled in a slightly different manner (i.e. they
[ginac.git] / ginac / isospin.h
index 0cc29bc71d297bf2d363f0425de58d1ea63cfb6d..8103fc1a6ec291d2e85714a686b16673b4d37200 100644 (file)
@@ -49,15 +49,15 @@ protected:
 
     // other constructors
 public:
-    explicit isospin(const string & initname);
+    explicit isospin(const std::string & initname);
 
     // functions overriding virtual functions from base classes
 public:
     basic * duplicate() const;
-    void printraw(ostream & os) const;
-    void printtree(ostream & os, unsigned indent) const;
-    void print(ostream & os, unsigned upper_precedence=0) const;
-    void printcsrc(ostream & os, unsigned type, unsigned upper_precedence=0) const;
+    void printraw(std::ostream & os) const;
+    void printtree(std::ostream & os, unsigned indent) const;
+    void print(std::ostream & os, unsigned upper_precedence=0) const;
+    void printcsrc(std::ostream & os, unsigned type, unsigned upper_precedence=0) const;
     bool info(unsigned inf) const;
 protected:
     int compare_same_type(const basic & other) const;
@@ -69,14 +69,14 @@ protected:
     
     // non-virtual functions in this class
 public:
-    void setname(const string & n);
+    void setname(const std::string & n);
 private:
-    string & autoname_prefix(void);
+    std::string & autoname_prefix(void);
 
 // member variables
 
 protected:
-    string name;
+    std::string name;
     unsigned serial; // unique serial number for comparision
 private:
     static unsigned next_serial;