*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0.hh
index c34ee081a3baa25d313eb3907ca64bfe81bf36a7..997102b97bb96e825f0e8ee9afcba0acb81997d3 100644 (file)
@@ -1,17 +1,28 @@
 #ifndef DATA_BLOCK_0_H
 #define DATA_BLOCK_0_H
 
+#include <vector>
+#include <string>
+
 #include "data_block.hh"
 
+/*!
+ *\brief Class for block type (0-*).
+ */
 class data_block_0
   : public data_block
 {
- public:
+  friend tape_block * tape_block::gen_from_fd(int,void(*)(void*),
+                                             void(*)(void*),void*);
+private:
   data_block_0(data_block&);
-  virtual ~data_block_0();
 
+public:  
   int get_subtype();
+  vector<string> get_description();
 
 };
 
 #endif
+
+