xref: /haiku/src/kits/locale/DateFormat.cpp (revision f2b4344867e97c3f4e742a1b4a15e6879644601a)
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 <DateFormat.h>
10 
11 
12 // default constructor
13 BDateFormat::BDateFormat()
14 	: BDateTimeFormat()
15 {
16 }
17 
18 // copy constructor
19 BDateFormat::BDateFormat(const BDateFormat &other)
20 	: BDateTimeFormat(other)
21 {
22 }
23 
24 // destructor
25 BDateFormat::~BDateFormat()
26 {
27 }
28 
29 // Format
30 status_t
31 BDateFormat::Format(bigtime_t value, BString* buffer) const
32 {
33 	return B_ERROR;
34 }
35