f4124af56f7cf6b280b67607850561d6e2a270f7
[h316.git] / pc-tools / ldc2 / src / data_block_6.cpp
1 #include "data_block_6.hh"
2
3 /*!
4 *\brief Specialisation constructor.
5 */
6 data_block_6::data_block_6(data_block & org)
7 :data_block(org)
8 {}
9
10 /*!
11 *\brief Describe the block.
12 *\return A vector of text lines describing this block.
13 */
14 vector<string> data_block_6::get_description(){
15 vector<string> result;
16 result.insert(result.end(),extract_label(3)+" "+get_typestring()+"Subroutine or Common Block Definition");
17 return result;
18 }
19
20
21
22