*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_44.cpp
CommitLineData
09cb0f4f 1#include "data_block_0_44.hh"
2
3#include <stdio.h>
4
5/*!
6 *\brief Parent class copy constructor.
7 */
8data_block_0_44::data_block_0_44(data_block_0 & org)
fd9632c0 9 :data_block_0_label_extractor(org)
874a2bd8 10{
11 m_has_known_type=false;
12}
09cb0f4f 13
14/*!
15 *\brief Describe the block.
16 *\return A vector of text lines describing this block.
17 */
18vector<string> data_block_0_44::get_description(){
19 vector<string> result;
fd9632c0 20 string label=get_labels()[0];
21 result.insert(result.end(),
22 label+" "+get_typestring()+"Subprogram Call");
09cb0f4f 23 return result;
24}
874a2bd8 25
26/***************************************************************/
27/*!
28 *\brief Get called symbols.
29 *\return A vector containing the symbol names called by this
30 * block.
31 */
32vector<string> data_block_0_44::get_called_symbols(){
33 vector<string> result;
34 result.insert(result.end(),get_labels()[0]);
35 return result;
36}