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