8aa5a6d1851365797017ad03e5d9f2150880a93f
[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
22 private: // methods
23 eot_block(tape_block &);
24 eot_block();
25
26 }; // class eot_block
27
28
29 #endif