]> www.ginac.de Git - ginac.git/blobdiff - ginac/printraw.cpp
- modified the comment blocks so the copyright message no longer appears in
[ginac.git] / ginac / printraw.cpp
index 8315c81816375806d16a3bf0fe92bd0d834e8055..d1aac63e1e5c86ea1be6f95248ae10612b774260 100644 (file)
@@ -3,13 +3,46 @@
  * 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"
 
 void ex::printraw(ostream & os) const
 {