*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / eot_block.hh
diff --git a/pc-tools/ldc2/src/eot_block.hh b/pc-tools/ldc2/src/eot_block.hh
new file mode 100644 (file)
index 0000000..700e3a8
--- /dev/null
@@ -0,0 +1,25 @@
+
+#ifndef EOT_BLOCK_H
+#define EOT_BLOCK_H
+
+#include <string>
+using namespace std;
+
+class eot_block
+  : public tape_block
+{
+private: 
+  eot_block();
+  
+public:
+  eot_block(tape_block&);
+  ~eot_block();
+  
+  virtual int get_type();
+  virtual int get_subtype();
+  int get_word_size();
+  
+
+};
+
+#endif