Old snapshot `BigInteger-2004.12.16'; see the ChangeLog file.
[bigint/bigint.git] / BigIntegerIO.h
1 /*
2 * Matt McCutchen's Big Integer Library
3 * See: http://mysite.verizon.net/mccutchen/bigint/
4 */
5
6 #ifndef BIGINTEGERIO
7 #define BIGINTEGERIO
8
9 #include "BigUnsigned.h"
10 #include "BigInteger.h"
11 #include <iostream>
12
13 // Some I/O routines for BigIntegers and BigUnsigneds
14
15 // Both of these output x to os in decimal notation.
16 std::ostream &operator <<(std::ostream &os, BigUnsigned x);
17 std::ostream &operator <<(std::ostream &os, BigInteger x);
18
19 #endif