*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_4.cpp
index b325ed7b0c265634f99840b16ad5315dd538df88..3e11dcd5202fdb4f9b5a6abed6d1440e9420dde1 100644 (file)
@@ -5,7 +5,10 @@
  */
 data_block_4::data_block_4(data_block & org)
   :data_block(org)
-{}
+{
+  m_has_known_type=false;
+}
+
 
 /*!
  *\brief Describe the block.
@@ -17,6 +20,15 @@ vector<string> data_block_4::get_description(){
   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_4::is_endblock(){
+  return true;
+}
+