*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / eot_block.hh
1
2 #ifndef EOT_BLOCK_H
3 #define EOT_BLOCK_H
4
5 #include <string>
6 using namespace std;
7
8 class eot_block
9 : public tape_block
10 {
11 private:
12 eot_block();
13
14 public:
15 eot_block(tape_block&);
16 ~eot_block();
17
18 virtual int get_type();
19 virtual int get_subtype();
20 int get_word_size();
21
22
23 };
24
25 #endif