Added some includes
[h316.git] / pc-tools / ldc2 / src / data_block_4.cpp
index c258c26baf33e04fee77c88d02c805cf31cfa280..e884388e717d613b4bc9e35e907f6af40fe94f37 100644 (file)
@@ -1,3 +1,20 @@
+/******************************************************************************
+ * 
+ * LDC2 source code
+ *
+ * $Date: 2007/05/30 01:33:08 $
+ * $Author: hachti $
+ *
+ * $Log: data_block_4.cpp,v $
+ * Revision 2.1  2007/05/30 01:33:08  hachti
+ * Corrected handling for FORTRAN data blocks 3 and 4: added endblock capability.
+ *
+ * Revision 2.0  2007-03-26 01:00:39  hachti
+ * *** empty log message ***
+ *
+ *
+ ******************************************************************************/
 #include "data_block_4.hh"
 
 /*!
@@ -20,6 +37,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;
+}
+