1/*
2 * Copyright 2010, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Oliver Tappe <zooey@hirschkaefer.de>
7 */
8
9#include <TimeFormat.h>
10
11
12// copy constructor
13BTimeFormat::BTimeFormat(const BTimeFormat &other)
14	: BDateTimeFormat(other)
15{
16}
17
18// destructor
19BTimeFormat::~BTimeFormat()
20{
21}
22
23// Format
24status_t
25BTimeFormat::Format(bigtime_t value, BString* buffer) const
26{
27	return B_ERROR;
28}
29