mirror of https://github.com/CGAL/cgal
21 lines
598 B
C++
21 lines
598 B
C++
// CORE LIBRARY FILE
|
|
#ifndef _CORE_GMP_H_
|
|
#define _CORE_GMP_H_
|
|
|
|
#include <CGAL/CORE/Impl.h>
|
|
#include <gmp.h>
|
|
|
|
namespace CORE {
|
|
|
|
std::ostream& io_write (std::ostream &, mpz_srcptr);
|
|
std::ostream& io_write (std::ostream &, mpq_srcptr);
|
|
std::istream& io_read (std::istream &, mpz_ptr);
|
|
std::istream& io_read (std::istream &, mpq_ptr);
|
|
//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);
|
|
|
|
} //namespace CORE
|
|
#endif // _CORE_GMP_H_
|