*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0.hh
index c34ee081a3baa25d313eb3907ca64bfe81bf36a7..e15ea1d009cfd229a9a52ef3ba47f10f7797d9d0 100644 (file)
@@ -1,17 +1,41 @@
-#ifndef DATA_BLOCK_0_H
-#define DATA_BLOCK_0_H
+/******************************************************************************
+ * 
+ * LDC2 source code
+ *
+ * $Date: 2007/03/26 01:00:38 $
+ * $Author: hachti $
+ *
+ * $Log: data_block_0.hh,v $
+ * Revision 2.0  2007/03/26 01:00:38  hachti
+ * *** empty log message ***
+ *
+ *
+ ******************************************************************************/
+#ifndef DATA_BLOCK_0_HH
+#define DATA_BLOCK_0_HH
+
+#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*);
+protected:
   data_block_0(data_block&);
-  virtual ~data_block_0();
 
+public:  
   int get_subtype();
-
+  vector<string> get_description();
 };
 
 #endif
+
+