5fdf2150e67ea21c2ebf87915b9fe14ffdc0f90a
[h316.git] / pc-tools / ldc2 / src / data_block_0_50.cpp
1 #include "data_block_0_50.hh"
2
3 #include <stdio.h>
4
5 /*!
6 *\brief Parent class copy constructor.
7 */
8 data_block_0_50::data_block_0_50(data_block_0 & org)
9 :data_block_0_label_extractor(org)
10 {}
11
12 /*!
13 *\brief Describe the block.
14 *\return A vector of text lines describing this block.
15 */
16 vector<string> data_block_0_50::get_description(){
17 vector<string> result;
18 vector<string> labels=get_labels();
19 for (unsigned int i=0; i<labels.size();i++){
20 if (i==0) result.insert(result.end(),
21 labels[i]+" "+get_typestring()+"Subprogram Entry Point Definition");
22 else
23 result.insert(result.end(),
24 labels[i]+" "+get_typestring() +" \" \"");
25 }
26 return result;
27 }
28