*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_44.cpp
1 /******************************************************************************
2 *
3 * LDC2 source code
4 *
5 * $Date: 2007/03/26 01:00:39 $
6 * $Author: hachti $
7 *
8 * $Log: data_block_0_44.cpp,v $
9 * Revision 2.0 2007/03/26 01:00:39 hachti
10 * *** empty log message ***
11 *
12 *
13 ******************************************************************************/
14
15 #include "data_block_0_44.hh"
16
17 #include <stdio.h>
18
19 /*!
20 *\brief Parent class copy constructor.
21 */
22 data_block_0_44::data_block_0_44(data_block_0 & org)
23 :data_block_0_label_extractor(org)
24 {
25 m_has_known_type=false;
26 }
27
28 /*!
29 *\brief Describe the block.
30 *\return A vector of text lines describing this block.
31 */
32 vector<string> data_block_0_44::get_description(){
33 vector<string> result;
34 string label=get_labels()[0];
35 result.insert(result.end(),
36 label+" "+get_typestring()+"Subprogram Call");
37 return result;
38 }
39
40 /***************************************************************/
41 /*!
42 *\brief Get called symbols.
43 *\return A vector containing the symbol names called by this
44 * block.
45 */
46 vector<string> data_block_0_44::get_called_symbols(){
47 vector<string> result;
48 result.insert(result.end(),get_labels()[0]);
49 return result;
50 }