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 19 // copy constructor 20 BDateTimeFormat::BDateTimeFormat(const BDateTimeFormat &other) 21 : BFormat(other) 22 { 23 } 24 25 26 // destructor 27 BDateTimeFormat::~BDateTimeFormat() 28 { 29 } 30 31 32 // Format 33 status_t 34 BDateTimeFormat::Format(bigtime_t value, BString* buffer) const 35 { 36 return B_ERROR; 37 } 38