mirror of
https://review.haiku-os.org/haiku
synced 2025-02-07 14:25:58 +01:00
25 lines
490 B
C
25 lines
490 B
C
|
/*
|
||
|
* Copyright 2010, Haiku, Inc.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _B_DURATION_FORMAT_H_
|
||
|
#define _B_DURATION_FORMAT_H_
|
||
|
|
||
|
|
||
|
#include <DateTimeFormat.h>
|
||
|
#include <String.h>
|
||
|
#include <TimeUnitFormat.h>
|
||
|
|
||
|
|
||
|
class BDurationFormat : public BFormat {
|
||
|
public:
|
||
|
status_t Format(bigtime_t startValue,
|
||
|
bigtime_t stopValue, BString* buffer,
|
||
|
time_unit_style style = B_TIME_UNIT_FULL,
|
||
|
const BString& separator = ", "
|
||
|
) const;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|