cgal/Core/include/CORE/Gmp.h

17 lines
384 B
C++

// CORE LIBRARY FILE
#ifndef _CORE_GMP_H_
#define _CORE_GMP_H_
#include <CORE/Impl.h>
#include <gmp.h>
CORE_BEGIN_NAMESPACE
std::ostream& operator<< (std::ostream &, mpz_srcptr);
std::ostream& operator<< (std::ostream &, mpq_srcptr);
std::istream& operator>> (std::istream &, mpz_ptr);
std::istream& operator>> (std::istream &, mpq_ptr);
CORE_END_NAMESPACE
#endif // _CORE_GMP_H_