X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fnormal.h;h=f3e8920dbea4a1e1454d5fb7a592af42f150826f;hp=d4d8ac166664aaf16ae9e54ba2657668ddd70045;hb=aff6beb8e799e6827c40975ed2f22b51976b1cb8;hpb=66c0f31c678e6c1938d637636b230ea376c157c1 diff --git a/ginac/normal.h b/ginac/normal.h index d4d8ac16..f3e8920d 100644 --- a/ginac/normal.h +++ b/ginac/normal.h @@ -1,9 +1,10 @@ /** @file normal.h * * Functions for polynomial quotient and remainder, GCD and LCM computation - * and square-free factorization. - * - * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany + * and square-free factorization. */ + +/* + * GiNaC Copyright (C) 1999-2000 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 @@ -20,8 +21,12 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef NORMAL_H -#define NORMAL_H +#ifndef __GINAC_NORMAL_H__ +#define __GINAC_NORMAL_H__ + +#ifndef NO_NAMESPACE_GINAC +namespace GiNaC { +#endif // ndef NO_NAMESPACE_GINAC class ex; class symbol; @@ -47,4 +52,8 @@ extern ex lcm(const ex &a, const ex &b, bool check_args = true); // Square-free factorization of a polynomial a(x) extern ex sqrfree(const ex &a, const symbol &x); -#endif +#ifndef NO_NAMESPACE_GINAC +} // namespace GiNaC +#endif // ndef NO_NAMESPACE_GINAC + +#endif // ndef __GINAC_NORMAL_H__