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