blob: 6a88289fe2ea31687c64b82de4e75aa9ee600032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __DW_OOFPOSFIXEDMGR_HH__
#define __DW_OOFPOSFIXEDMGR_HH__
#include "oofpositionedmgr.hh"
namespace dw {
class OOFPosFixedMgr: public OOFPositionedMgr
{
public:
OOFPosFixedMgr (Textblock *containingBlock);
~OOFPosFixedMgr ();
};
} // namespace dw
#endif // __DW_OOFPOSFIXEDMGR_HH__
|