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