X-Git-Url: http://gitweb.hachti.de/?a=blobdiff_plain;f=pc-tools%2Fldc2%2Fsrc%2Feot_block.cpp;h=efd31a0eae84b1999b59ca86465ed796b0c07d8b;hb=4741aa72fcdfe52497013c7cbbeaa0bde9be3564;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=6c06db96fb1c7482f8cb7e1d14eee91603fbb894;p=h316.git diff --git a/pc-tools/ldc2/src/eot_block.cpp b/pc-tools/ldc2/src/eot_block.cpp index e69de29..efd31a0 100644 --- a/pc-tools/ldc2/src/eot_block.cpp +++ b/pc-tools/ldc2/src/eot_block.cpp @@ -0,0 +1,56 @@ +/****************************************************************************** + * + * LDC2 source code + * + * $Date: 2007/03/26 01:00:40 $ + * $Author: hachti $ + * + * $Log: eot_block.cpp,v $ + * Revision 2.0 2007/03/26 01:00:40 hachti + * *** empty log message *** + * + * + ******************************************************************************/ + +#include +#include + +#include "eot_block.hh" +#include "tape_block.hh" + +using namespace std; + +/***************************************************************/ +/*! + *\brief Copy constructor. + */ +eot_block::eot_block(eot_block & org){ + operator=(org); + m_has_known_type=true; +} + +/***************************************************************/ +/*! + *\brief Get a cleartext description of the block. + *\return ldc style descriptive line for the block + */ +vector eot_block:: get_description(){ + vector result; + string r_string="***********(EOT)*****End of Tape mark **********************"; + result.insert(result.end(),r_string); + return result; +} + +/***************************************************************/ +/*! + *\brief Specialisation constructor + */ +eot_block::eot_block(tape_block & org) + : tape_block(org) +{} + +/***************************************************************/ +/*! + *\brief Default constructor. + */ +eot_block::eot_block(){}