]> www.ginac.de Git - ginac.git/blobdiff - ginac/printraw.cpp
- put everything in "GiNaC" namespace
[ginac.git] / ginac / printraw.cpp
index 8315c81816375806d16a3bf0fe92bd0d834e8055..7c66c1bb7b86a52078f1e6ffba90a32479470065 100644 (file)
@@ -3,13 +3,49 @@
  * print in ugly raw format, so brave developers can have a look at the
  * underlying structure. */
 
+/*
+ *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 /* We are cheating here, because we don't want to include the underlying
  * bignum package's headers again, so in this file we omit the definition of
  * void numeric::printraw(ostream & os) const; */
 
 #include <iostream>
 
-#include "ginac.h"
+#include "basic.h"
+#include "ex.h"
+#include "add.h"
+#include "constant.h"
+#include "expairseq.h"
+#include "fail.h"
+#include "indexed.h"
+#include "inifcns.h"
+#include "matrix.h"
+#include "mul.h"
+#include "ncmul.h"
+#include "numeric.h"
+#include "power.h"
+#include "relational.h"
+#include "series.h"
+#include "symbol.h"
+#include "debugmsg.h"
+
+namespace GiNaC {
 
 void ex::printraw(ostream & os) const
 {
@@ -188,3 +224,5 @@ void matrix::printraw(ostream & os) const
     }
     os << m[row*col-1] << "))";
 }
+
+} // namespace GiNaC