*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_0.cpp
diff --git a/pc-tools/ldc2/src/data_block_0_0.cpp b/pc-tools/ldc2/src/data_block_0_0.cpp
new file mode 100644 (file)
index 0000000..2e1d222
--- /dev/null
@@ -0,0 +1,21 @@
+#include "data_block_0_0.hh"
+
+#include <stdio.h>
+
+/*!
+ *\brief Parent class copy constructor.
+ */
+data_block_0_0::data_block_0_0(data_block_0 & org)
+  :data_block_0(org)
+{}
+
+/*!
+ *\brief Describe the block.
+ *\return A vector of text lines describing this block.
+ */
+vector<string> data_block_0_0::get_description(){
+  vector<string> result;
+  result.insert(result.end(),"Fixme!     "+get_typestring()+"Default 0-* block");
+  return result;
+}
+