*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_7.cpp
diff --git a/pc-tools/ldc2/src/data_block_7.cpp b/pc-tools/ldc2/src/data_block_7.cpp
new file mode 100644 (file)
index 0000000..9481bee
--- /dev/null
@@ -0,0 +1,22 @@
+#include "data_block_7.hh"
+
+/*!
+ *\brief Specialisation constructor.
+ */
+data_block_7::data_block_7(data_block & org)
+  :data_block(org)
+{}
+
+/*!
+ *\brief Describe the block.
+ *\return A vector of text lines describing this block.
+ */
+vector<string> data_block_7::get_description(){
+  vector<string> result;
+  result.insert(result.end(),extract_label(3)+"     "+get_typestring()+"Reference to Item In Common");
+  return result;
+}
+
+
+
+