blob: 86489ceffc27275ffdcb0e421a2f93061149a67f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- abstractTable.cpp.orig Wed Oct 10 05:24:26 2001
+++ abstractTable.cpp Sat Aug 16 16:13:04 2003
@@ -18,15 +18,16 @@
* Boston, MA 02111-1307, USA.
*
*/
+
+using namespace std;
+
#include "abstractTable.h"
#include "safe_ostrstream.h"
#include "util.h"
+#include <cassert>
#include <stdio.h>
//#define DEBUG 1
-
-using namespace std;
-
ostream& operator<<(ostream &o,const tabCell &c)
{
|