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