Fixed dependencies in Makefile
[h316.git] / pc-tools / ldc2 / src / eot_block.hh
... / ...
CommitLineData
1/******************************************************************************
2 *
3 * LDC2 source code
4 *
5 * $Date: 2007/03/26 01:00:40 $
6 * $Author: hachti $
7 *
8 * $Log: eot_block.hh,v $
9 * Revision 2.0 2007/03/26 01:00:40 hachti
10 * *** empty log message ***
11 *
12 *
13 ******************************************************************************/
14
15#ifndef EOT_BLOCK_H
16#define EOT_BLOCK_H
17
18#include <string>
19#include <vector>
20
21#include "tape_block.hh"
22
23using namespace std;
24
25/*!
26 *\brief Class representating an End of Tape block.
27 */
28class eot_block : public tape_block
29{
30 friend tape_block * tape_block::gen_from_fd(int,void(*)(void*),
31 void(*)(void*),void*);
32public: // methods
33 eot_block(eot_block &);
34 virtual vector<string> get_description();
35private: // methods
36 eot_block(tape_block &);
37 eot_block();
38
39}; // class eot_block
40
41
42#endif