xref: /haiku/src/kits/locale/TimeFormat.cpp (revision 922e7ba1f3228e6f28db69b0ded8f86eb32dea17)
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
13 BTimeFormat::BTimeFormat(const BTimeFormat &other)
14 	: BDateTimeFormat(other)
15 {
16 }
17 
18 // destructor
19 BTimeFormat::~BTimeFormat()
20 {
21 }
22 
23 // Format
24 status_t
25 BTimeFormat::Format(bigtime_t value, BString* buffer) const
26 {
27 	return B_ERROR;
28 }
29