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