1 /* 2 * Copyright 2015, Rene Gollent, rene@gollent.com. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include "ValueFormatter.h" 8 9 ~ValueFormatter()10ValueFormatter::~ValueFormatter() 11 { 12 } 13 14 15 bool SupportsValidation() const16ValueFormatter::SupportsValidation() const 17 { 18 return false; 19 } 20 21 22 bool ValidateFormattedValue(const BString & input,type_code type) const23ValueFormatter::ValidateFormattedValue(const BString& input, type_code type) 24 const 25 { 26 return false; 27 } 28 29 30 status_t GetValueFromFormattedInput(const BString & input,type_code type,Value * & _output) const31ValueFormatter::GetValueFromFormattedInput(const BString& input, 32 type_code type, Value*& _output) const 33 { 34 return B_NOT_SUPPORTED; 35 } 36