]> www.ginac.de Git - ginac.git/blobdiff - ginac/indexed.h
#ifndef around namespace GiNaC { }
[ginac.git] / ginac / indexed.h
index 97e3e1a71229f4f056f8919b81c0d0227690ff57..a731769bd9f5c9826ead34ae4077094f4fb71500 100644 (file)
@@ -1,7 +1,8 @@
 /** @file indexed.h
  *
- *  Interface to GiNaC's index carrying objects.
- *
+ *  Interface to GiNaC's index carrying objects. */
+
+/*
  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
 #include <string>
 #include <ginac/exprseq.h>
 
+#ifndef NO_GINAC_NAMESPACE
+namespace GiNaC {
+#endif // ndef NO_GINAC_NAMESPACE
+
 /** Base class for non-commutative indexed objects */
 class indexed : public exprseq
 {
@@ -85,10 +90,14 @@ protected:
 extern const indexed some_indexed;
 extern type_info const & typeid_indexed;
 
-// macros
+// utility functions
+inline const indexed &ex_to_indexed(const ex &e)
+{
+       return static_cast<const indexed &>(*e.bp);
+}
 
-#define ex_to_indexed(X) static_cast<indexed const &>(*(X).bp)
+#ifndef NO_GINAC_NAMESPACE
+} // namespace GiNaC
+#endif // ndef NO_GINAC_NAMESPACE
 
 #endif // ndef __GINAC_INDEXED_H__
-
-