32afcc5cc5
As pointed out by Axel, the wrong style was used in these headers we inherited from OpenTracker days.
19 lines
344 B
C++
19 lines
344 B
C++
#ifndef _B_FORMAT_IMPL_H_
|
|
#define _B_FORMAT_IMPL_H_
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
class BFormatParameters;
|
|
|
|
class BFormatImpl {
|
|
public:
|
|
BFormatImpl();
|
|
virtual ~BFormatImpl();
|
|
|
|
virtual BFormatParameters *DefaultFormatParameters() = 0;
|
|
virtual const BFormatParameters *DefaultFormatParameters()
|
|
const = 0;
|
|
};
|
|
|
|
#endif // _B_FORMAT_IMPL_H_
|