Old snapshot `BigIntegerLibrary-2004.12.24.2'; see the ChangeLog file.
[bigint/bigint.git] / BigIntegerIO.h
diff --git a/BigIntegerIO.h b/BigIntegerIO.h
deleted file mode 100644 (file)
index 356fee0..0000000
+++ /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 <iostream>
-
-// 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