*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_50.cpp
CommitLineData
4741aa72 1/******************************************************************************
2 *
3 * LDC2 source code
4 *
5 * $Date: 2007/03/26 01:00:39 $
6 * $Author: hachti $
7 *
8 * $Log: data_block_0_50.cpp,v $
9 * Revision 2.0 2007/03/26 01:00:39 hachti
10 * *** empty log message ***
11 *
12 *
13 ******************************************************************************/
14
09cb0f4f 15#include "data_block_0_50.hh"
16
17#include <stdio.h>
18
19/*!
20 *\brief Parent class copy constructor.
21 */
22data_block_0_50::data_block_0_50(data_block_0 & org)
fd9632c0 23 :data_block_0_label_extractor(org)
874a2bd8 24{
25 m_has_known_type=false;
26}
09cb0f4f 27
28/*!
29 *\brief Describe the block.
30 *\return A vector of text lines describing this block.
31 */
32vector<string> data_block_0_50::get_description(){
33 vector<string> result;
fd9632c0 34 vector<string> labels=get_labels();
c8a4d02d 35 for (unsigned int i=0; i<labels.size();i++){
fd9632c0 36 if (i==0) result.insert(result.end(),
37 labels[i]+" "+get_typestring()+"Subprogram Entry Point Definition");
38 else
39 result.insert(result.end(),
40 labels[i]+" "+get_typestring() +" \" \"");
41 }
09cb0f4f 42 return result;
43}
44