blob: ff19e14260b7aa70573c1d97db0a574429b0fe43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- bstring.h.orig 1999-10-24 11:29:53 UTC
+++ bstring.h
@@ -21,13 +21,15 @@
#ifndef __BSTRING_HPP__
#define __BSTRING_HPP__
-#include <alloc.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
-#include <fstream.h>
+#include <fstream>
#include "dos_comp.h"
+using std::istream;
+using std::ostream;
+
//////////////////////////////////////////////////////////////////////////////
class b_string
|