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