]> www.ginac.de Git - ginac.git/blobdiff - ginac/structure.h
- Derivatives are now assembled in a slightly different manner (i.e. they
[ginac.git] / ginac / structure.h
index 5bd74685a3e8c8eee90bfb22ecf1c40e6526ea6d..358e6ce65a4adb55ac5384172fca39e24cabb7cf 100644 (file)
@@ -59,10 +59,10 @@ protected:
     // functions overriding virtual functions from bases classes
 public:
     basic * duplicate() const;
-    void printraw(ostream & os) const; 
-    void print(ostream & os, unsigned upper_precedence=0) const;
-    void printtree(ostream & os, unsigned indent) const;
-    void printcsrc(ostream & os, unsigned type, unsigned upper_precedence=0) const;
+    void printraw(std::ostream & os) const; 
+    void print(std::ostream & os, unsigned upper_precedence=0) const;
+    void printtree(std::ostream & os, unsigned indent) const;
+    void printcsrc(std::ostream & os, unsigned type, unsigned upper_precedence=0) const;
 protected:
     int compare_same_type(const basic & other) const;
     bool is_equal_same_type(const basic & other) const;
@@ -72,7 +72,7 @@ protected:
     
     // non-virtual functions in this class
 protected:
-    static vector<registered_structure_info> & registered_structures(void);
+    static std::vector<registered_structure_info> & registered_structures(void);
 public:
     static unsigned register_new(const char * nm);