/** Copyright 2015, Rene Gollent, rene@gollent.com.* Distributed under the terms of the MIT License.*/#include "ValueFormatter.h"ValueFormatter::~ValueFormatter(){}boolValueFormatter::SupportsValidation() const{return false;}boolValueFormatter::ValidateFormattedValue(const BString& input, type_code type)const{return false;}status_tValueFormatter::GetValueFromFormattedInput(const BString& input,type_code type, Value*& _output) const{return B_NOT_SUPPORTED;}