a022af77b0b5a9b9b63041130bfb24107187db9a
[h316.git] / pc-tools / ldc2 / src / eot_block.hh
1 #ifndef EOT_BLOCK_H
2 #define EOT_BLOCK_H
3
4 #include <string>
5 #include <vector>
6
7 #include "tape_block.hh"
8
9 using namespace std;
10
11 /*!
12 *\brief Class representating an End of Tape block.
13 */
14 class eot_block : public tape_block
15 {
16 friend tape_block * tape_block::gen_from_fd(int,void(*)(void*),
17 void(*)(void*),void*);
18 public: // methods
19 eot_block(eot_block &);
20 virtual vector<string> get_description();
21 private: // methods
22 eot_block(tape_block &);
23 eot_block();
24
25 }; // class eot_block
26
27
28 #endif