*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / eot_block.cpp
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..48bbff8716a65ad2f30fcda4eb6800eb761ad54d 100644 (file)
@@ -0,0 +1,42 @@
+#include <string>
+#include <vector>
+
+#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<string> eot_block:: get_description(){
+  vector<string> 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(){}