Fixed dependencies in Makefile
[h316.git] / pc-tools / ldc2 / src / data_block_5.cpp
index 408759ad3f0736dcdb3be99c83a671eaf4cce1be..07940d84349abcdb114aa19b67522447ac498e33 100644 (file)
@@ -1,3 +1,17 @@
+/******************************************************************************
+ * 
+ * LDC2 source code
+ *
+ * $Date: 2007/03/26 01:00:39 $
+ * $Author: hachti $
+ *
+ * $Log: data_block_5.cpp,v $
+ * Revision 2.0  2007/03/26 01:00:39  hachti
+ * *** empty log message ***
+ *
+ *
+ ******************************************************************************/
 #include "data_block_5.hh"
 
 /*!
@@ -5,7 +19,10 @@
  */
 data_block_5::data_block_5(data_block & org)
   :data_block(org)
-{}
+{
+  m_has_known_type=false;
+}
+
 
 /*!
  *\brief Describe the block.
@@ -17,6 +34,18 @@ vector<string> data_block_5::get_description(){
   return result;
 }
 
+/***************************************************************/
+/*!
+ *\brief Get called symbols.
+ *\return A vector containing the symbol names exported by this
+ *        block.
+ */
+vector<string> data_block_5::get_called_symbols(){
+  vector<string> result;
+  result.insert(result.end(),extract_label(3));
+  return result;
+}
+