*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_14.cpp
index 3dc139f61d0eef4b46f7b0a0e2b65b520a11f93b..5af8ac489b52835c65f0b9a9a861a2b3bc9423b7 100644 (file)
@@ -1,3 +1,17 @@
+/******************************************************************************
+ * 
+ * LDC2 source code
+ *
+ * $Date: 2007/03/26 01:00:39 $
+ * $Author: hachti $
+ *
+ * $Log: data_block_0_14.cpp,v $
+ * Revision 2.0  2007/03/26 01:00:39  hachti
+ * *** empty log message ***
+ *
+ *
+ ******************************************************************************/
 #include "data_block_0_14.hh"
 
 #include <stdio.h>
@@ -7,7 +21,9 @@
  */
 data_block_0_14::data_block_0_14(data_block_0 & org)
   :data_block_0(org)
-{}
+{
+  m_has_known_type=false;
+}
 
 /*!
  *\brief Describe the block.
@@ -15,7 +31,16 @@ data_block_0_14::data_block_0_14(data_block_0 & org)
  */
 vector<string> data_block_0_14::get_description(){
   vector<string> result;
-  result.insert(result.end(),"Fixme!     "+get_typestring()+"Default 0-* block");
+  result.insert(result.end(),"           "+get_typestring()+"End");
   return result;
 }
 
+/***************************************************************/
+/*!
+ *\brief Determine if the block marks the end of an object
+ *\return true because this block is an end block.
+ */
+bool data_block_0_14::is_endblock(){
+  return true;
+}
+