*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_14.cpp
index 3dc139f61d0eef4b46f7b0a0e2b65b520a11f93b..36863a8a940b0e3e6a9eeaa07ff2552380d74fda 100644 (file)
@@ -7,7 +7,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 +17,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;
+}
+