263cb9327d8e5ac9a64346c20fc3fe87d11d953d
[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)+" "+
19 get_typestring()+"Reference to Item In Common");
20 return result;
21 }
22
23 /******************************************************************************/
24 /*!
25 *\brief Get called symbols.
26 *\return A vector containing the symbol names exported by this
27 * block.
28 */
29 vector<string> data_block_7::get_called_symbols(){
30 vector<string> result;
31 string rs=extract_label(3);
32 if (rs!=" ") result.insert(result.end(),rs);
33 return result;
34 }