X-Git-Url: http://gitweb.hachti.de/?a=blobdiff_plain;f=pc-tools%2Fldc2%2Fsrc%2Feot_block.hh;fp=pc-tools%2Fldc2%2Fsrc%2Feot_block.hh;h=700e3a892926fa1309709e1645d33f14d972a08d;hb=6c06db96fb1c7482f8cb7e1d14eee91603fbb894;hp=0000000000000000000000000000000000000000;hpb=0ec6e0426b19388fdac1312216a0095c7bed04a0;p=h316.git diff --git a/pc-tools/ldc2/src/eot_block.hh b/pc-tools/ldc2/src/eot_block.hh new file mode 100644 index 0000000..700e3a8 --- /dev/null +++ b/pc-tools/ldc2/src/eot_block.hh @@ -0,0 +1,25 @@ + +#ifndef EOT_BLOCK_H +#define EOT_BLOCK_H + +#include +using namespace std; + +class eot_block + : public tape_block +{ +private: + eot_block(); + +public: + eot_block(tape_block&); + ~eot_block(); + + virtual int get_type(); + virtual int get_subtype(); + int get_word_size(); + + +}; + +#endif