469b7f97d31ec353c0acd4cf089b714d3d864d9d
[h316.git] / pc-tools / ldc2 / src / data_block_0_2.cpp
1 #include "data_block_0_2.hh"
2
3 #include <stdio.h>
4
5 /*!
6 *\brief Parent class copy constructor.
7 */
8 data_block_0_2::data_block_0_2(data_block_0 & org)
9 :data_block_0(org)
10 {
11 m_has_known_type=false;
12 }
13
14
15 /*!
16 *\brief Describe the block.
17 *\return A vector of text lines describing this block.
18 */
19 vector<string> data_block_0_2::get_description(){
20 vector<string> result;
21 result.insert(result.end()," "+get_typestring()+"Turn on chain flag");
22 return result;
23 }
24