2009-05-01 19:23:59 +00:00
|
|
|
#ifndef _B_FORMAT_IMPL_H_
|
|
|
|
#define _B_FORMAT_IMPL_H_
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
class BFormatParameters;
|
|
|
|
|
2009-05-01 21:56:16 +00:00
|
|
|
class BFormatImpl {
|
2009-05-01 19:23:59 +00:00
|
|
|
public:
|
|
|
|
BFormatImpl();
|
|
|
|
virtual ~BFormatImpl();
|
|
|
|
|
|
|
|
virtual BFormatParameters *DefaultFormatParameters() = 0;
|
|
|
|
virtual const BFormatParameters *DefaultFormatParameters()
|
|
|
|
const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _B_FORMAT_IMPL_H_
|