keep a copy of my current dissertation example to investiaget further and another...
[IRC.git] / Robust / src / ClassLibrary / MGC / Scanner.java
index 40796c9ae9878de74bec23ed462c6b0759d3a77b..2767e53f8c2a22c42672ef7fc543c4b3a90f58f0 100644 (file)
@@ -1,12 +1,14 @@
 public class Scanner implements Iterator {\r
   private FileInputStream source;\r
   private int currentpos;\r
+  private int isHighbits;\r
   private int fd;\r
 \r
   public Scanner (final String source) {\r
     this.source = new FileInputStream(source);\r
     this.fd = this.source.getfd();\r
     this.currentpos = 0;\r
+    this.isHighbits = 1;\r
   }\r
 \r
   public void close () {\r