Commit | Line | Data |
---|---|---|
798b0c1d | 1 | #include "data_block_2.hh" |
2 | ||
3 | /*! | |
4 | *\brief Specialisation constructor. | |
5 | */ | |
6 | data_block_2::data_block_2(data_block & org) | |
874a2bd8 | 7 | :data_block(org) |
8 | { | |
9 | m_has_known_type=false; | |
10 | } | |
11 | ||
798b0c1d | 12 | |
13 | /*! | |
14 | *\brief Describe the block. | |
15 | *\return A vector of text lines describing this block. | |
16 | */ | |
17 | vector<string> data_block_2::get_description(){ | |
18 | vector<string> result; | |
19 | result.insert(result.end()," "+get_typestring()+"Relative program words"); | |
20 | return result; | |
21 | } | |
22 | ||
23 | ||
24 | ||
25 |