]> www.ginac.de Git - ginac.git/blobdiff - ginac/lst.h
- enforced GiNaC coding standards :-)
[ginac.git] / ginac / lst.h
index 66af406b79d7b3d5dc567f9940a978e44e8eec2f..08b75f78b101985c04a3bbc49d5c07d88212e18f 100644 (file)
@@ -9,13 +9,29 @@
  *                        $prepend=1
  *                        $let_op=1
  *                        $open_bracket=[
- *                        $close_bracket=] */
+ *                        $close_bracket=]
+ *
+ *  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
+ */
 
-#ifndef _LST_H_
-#define _LST_H_
+#ifndef __GINAC_LST_H__
+#define __GINAC_LST_H__
 
 #include <list>
-
 #include <ginac/ginac.h>
 
 typedef list<ex> exlist;
@@ -112,5 +128,5 @@ extern type_info const & typeid_lst;
 
 #define ex_to_lst(X) (static_cast<lst const &>(*(X).bp))
 
-#endif // ndef _LST_H_
+#endif // ndef __GINAC_LST_H__