f3dd81ab9b
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38426 a95241bf-73f2-0310-859d-f6bbb57e9c96
33 lines
726 B
C++
33 lines
726 B
C++
/*
|
|
* Copyright 2010, Haiku, Inc.
|
|
* Distributed under the terms of the MIT Licence.
|
|
*/
|
|
#ifndef _B_DATE_TIME_FORMAT_H_
|
|
#define _B_DATE_TIME_FORMAT_H_
|
|
|
|
#include <Format.h>
|
|
#include <FormatParameters.h>
|
|
|
|
|
|
class BString;
|
|
|
|
class BDateTimeFormat : public BFormat {
|
|
public:
|
|
BDateTimeFormat();
|
|
BDateTimeFormat(const BDateTimeFormat &other);
|
|
virtual ~BDateTimeFormat();
|
|
|
|
// formatting
|
|
|
|
// no-frills version: Simply appends the
|
|
// formatted date to the string buffer.
|
|
// Can fail only with B_NO_MEMORY or
|
|
// B_BAD_VALUE.
|
|
virtual status_t Format(bigtime_t value, BString* buffer) const;
|
|
|
|
// TODO: ... basically, all of it!
|
|
};
|
|
|
|
|
|
#endif // _B_DATE_TIME_FORMAT_H_
|