*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_50.cpp
CommitLineData
09cb0f4f 1#include "data_block_0_50.hh"
2
3#include <stdio.h>
4
5/*!
6 *\brief Parent class copy constructor.
7 */
8data_block_0_50::data_block_0_50(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_50::get_description(){
19 vector<string> result;
fd9632c0 20 vector<string> labels=get_labels();
c8a4d02d 21 for (unsigned int i=0; i<labels.size();i++){
fd9632c0 22 if (i==0) result.insert(result.end(),
23 labels[i]+" "+get_typestring()+"Subprogram Entry Point Definition");
24 else
25 result.insert(result.end(),
26 labels[i]+" "+get_typestring() +" \" \"");
27 }
09cb0f4f 28 return result;
29}
30