haiku/headers/os/locale/FormatImpl.h

19 lines
344 B
C
Raw Normal View History

#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_