*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0.cpp
... / ...
CommitLineData
1#include "data_block_0.hh"
2
3/*!
4 *\brief Parent class copy constructor.
5 */
6data_block_0::data_block_0(data_block & org)
7 :data_block(org)
8{}
9
10/*!
11 * Determine the block's subtype.
12 *\return The block's subtype, read from block data.
13 */
14int data_block_0::get_subtype(){
15 return (word_data[0]&0x0fc0)>>6;
16}
17
18/*!
19 *\brief Describe the block.
20 *\return A vector of text lines describing this block.
21 */
22vector<string> data_block_0::get_description(){
23 vector<string> result;
24 char buffer[150];
25 sprintf(buffer," (0-%02o) Type 0 data block, unknown\
26 subtype, this is an illegal condition!",get_subtype());
27 string r_string=buffer;
28 result.insert(result.end(),r_string);
29 return result;
30}
31
32
33