haiku/headers/os/locale/FormatImpl.h
Adrien Destugues 32afcc5cc5 Style fix in Locale Kit headers.
As pointed out by Axel, the wrong style was used in these headers we
inherited from OpenTracker days.
2016-09-27 19:34:52 +02:00

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_