*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block.hh
index 8b44754a34fc380ffe7cd0097be87ff4e80e1e1b..f6047ffdfeca02a0806c4561035ad39649fbcdcc 100644 (file)
@@ -1,21 +1,26 @@
 #ifndef DATA_BLOCK_HH
 #define DATA_BLOCK_HH
 
+#include<string>
 #include "tape_block.hh"
 
+using namespace std;
+
 class data_block
   : public tape_block
 {
-  //private: 
-  //data_block(); // Private constructor!
+private: 
+  data_block();
+  
 public:
-   data_block(tape_block&);
+  data_block(tape_block&);
   ~data_block();
-
-virtual int get_type();
-virtual int get_subtype();
-
+  
+  virtual int get_type();
+  virtual int get_subtype();
+  int get_word_size();
+  //protected:
+  string extract_string(int startbyte);
 };