]> www.ginac.de Git - ginac.git/blobdiff - ginac/structure.h
- added skeleton implementation of color and clifford classes (don't bother
[ginac.git] / ginac / structure.h
index 365f569134b04403eb66b044898b6ea552d08a28..9ad049fda6fdc7bbdddcedc19c22eaead38fa1ef 100644 (file)
@@ -25,9 +25,7 @@
 
 #include "basic.h"
 
-#ifndef NO_NAMESPACE_GINAC
 namespace GiNaC {
-#endif // ndef NO_NAMESPACE_GINAC
 
 struct registered_structure_info {
        const char * name;
@@ -42,10 +40,7 @@ struct registered_structure_info {
 class structure : public basic
 {
        GINAC_DECLARE_REGISTERED_CLASS(structure, basic)
-
-       // other constructors
-       // none
-
+       
        // functions overriding virtual functions from bases classes
 public:
        void printraw(std::ostream & os) const; 
@@ -55,22 +50,13 @@ public:
 protected:
        bool is_equal_same_type(const basic & other) const;
        
-       // new virtual functions which can be overridden by derived classes
-       // none
-       
        // non-virtual functions in this class
 protected:
        static std::vector<registered_structure_info> & registered_structures(void);
 public:
        static unsigned register_new(const char * nm);
-
-// member variables
-// none
-
 };
 
-#ifndef NO_NAMESPACE_GINAC
 } // namespace GiNaC
-#endif // ndef NO_NAMESPACE_GINAC
 
 #endif // ndef __GINAC_STRUCTURE_H__