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