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