36863a8a940b0e3e6a9eeaa07ff2552380d74fda
[h316.git] / pc-tools / ldc2 / src / data_block_0_14.cpp
1 #include "data_block_0_14.hh"
2
3 #include <stdio.h>
4
5 /*!
6 *\brief Parent class copy constructor.
7 */
8 data_block_0_14::data_block_0_14(data_block_0 & org)
9 :data_block_0(org)
10 {
11 m_has_known_type=false;
12 }
13
14 /*!
15 *\brief Describe the block.
16 *\return A vector of text lines describing this block.
17 */
18 vector<string> data_block_0_14::get_description(){
19 vector<string> result;
20 result.insert(result.end()," "+get_typestring()+"End");
21 return result;
22 }
23
24 /***************************************************************/
25 /*!
26 *\brief Determine if the block marks the end of an object
27 *\return true because this block is an end block.
28 */
29 bool data_block_0_14::is_endblock(){
30 return true;
31 }
32