3a9766e0775d6361c4332c7a87aaa9533bdc447b
[h316.git] / pc-tools / ldc2 / src / data_block_7.cpp
1 #include "data_block_7.hh"
2
3 /*!
4 *\brief Specialisation constructor.
5 */
6 data_block_7::data_block_7(data_block & org)
7 :data_block(org)
8 {
9 m_has_known_type=false;
10 }
11
12 /*!
13 *\brief Describe the block.
14 *\return A vector of text lines describing this block.
15 */
16 vector<string> data_block_7::get_description(){
17 vector<string> result;
18 result.insert(result.end(),extract_label(3)+" "+get_typestring()+"Reference to Item In Common");
19 return result;
20 }
21
22 /***************************************************************/
23 /*!
24 *\brief Get called symbols.
25 *\return A vector containing the symbol names exported by this
26 * block.
27 */
28 vector<string> data_block_7::get_called_symbols(){
29 vector<string> result;
30 result.insert(result.end(),extract_label(3));
31 return result;
32 }
33
34
35