*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / eot_block.cpp
CommitLineData
09cb0f4f 1#include <string>
2#include <vector>
3
4#include "eot_block.hh"
5#include "tape_block.hh"
6
7using namespace std;
8
9/***************************************************************/
10/*!
11 *\brief Copy constructor.
12 */
13eot_block::eot_block(eot_block & org){
14 operator=(org);
874a2bd8 15 m_has_known_type=true;
09cb0f4f 16}
17
18/***************************************************************/
19/*!
20 *\brief Get a cleartext description of the block.
21 *\return ldc style descriptive line for the block
22 */
23vector<string> eot_block:: get_description(){
24 vector<string> result;
ad324d29 25 string r_string="***********(EOT)*****End of Tape mark **********************";
09cb0f4f 26 result.insert(result.end(),r_string);
27 return result;
28}
29
30/***************************************************************/
31/*!
32 *\brief Specialisation constructor
33 */
34eot_block::eot_block(tape_block & org)
35 : tape_block(org)
36{}
37
38/***************************************************************/
39/*!
40 *\brief Default constructor.
41 */
42eot_block::eot_block(){}