X-Git-Url: https://mattmccutchen.net/bigint/bigint.git/blobdiff_plain/e67d60496ce8582666f1fb77503acfe5d05c70d4..05780f4b578d6ae054be0b19b8498d32a4f16c60:/BigIntegerIO.h diff --git a/BigIntegerIO.h b/BigIntegerIO.h deleted file mode 100644 index 356fee0..0000000 --- a/BigIntegerIO.h +++ /dev/null @@ -1,19 +0,0 @@ -/* -* Matt McCutchen's Big Integer Library -* See: http://mysite.verizon.net/mccutchen/bigint/ -*/ - -#ifndef BIGINTEGERIO -#define BIGINTEGERIO - -#include "BigUnsigned.h" -#include "BigInteger.h" -#include - -// Some I/O routines for BigIntegers and BigUnsigneds - -// Both of these output x to os in decimal notation. -std::ostream &operator <<(std::ostream &os, BigUnsigned x); -std::ostream &operator <<(std::ostream &os, BigInteger x); - -#endif