Added some includes
[h316.git] / pc-tools / ldc2 / src / data_block_0_44.cpp
index b3bce3c83c4933ef92aba0c3a1c25e294a7a417e..1fa7a619b7e25c48a96cc00492549d3a6aaf4b1d 100644 (file)
@@ -1,3 +1,17 @@
+/******************************************************************************
+ * 
+ * LDC2 source code
+ *
+ * $Date: 2007/03/26 01:00:39 $
+ * $Author: hachti $
+ *
+ * $Log: data_block_0_44.cpp,v $
+ * Revision 2.0  2007/03/26 01:00:39  hachti
+ * *** empty log message ***
+ *
+ *
+ ******************************************************************************/
 #include "data_block_0_44.hh"
 
 #include <stdio.h>
@@ -7,7 +21,9 @@
  */
 data_block_0_44::data_block_0_44(data_block_0 & org)
   :data_block_0_label_extractor(org)
-{}
+{
+  m_has_known_type=false;
+}
 
 /*!
  *\brief Describe the block.
@@ -20,3 +36,15 @@ vector<string> data_block_0_44::get_description(){
                            label+"     "+get_typestring()+"Subprogram Call");
   return result;
 }
+
+/***************************************************************/
+/*!
+ *\brief Get called symbols.
+ *\return A vector containing the symbol names called by this
+ *        block.
+ */
+vector<string> data_block_0_44::get_called_symbols(){
+  vector<string> result;
+  result.insert(result.end(),get_labels()[0]);
+  return result;
+}