*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / eot_block.hh
CommitLineData
6c06db96 1
2#ifndef EOT_BLOCK_H
3#define EOT_BLOCK_H
4
5#include <string>
6using namespace std;
7
8class eot_block
9 : public tape_block
10{
11private:
12 eot_block();
13
14public:
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