headers/bsd: Add sys/queue.h.
[haiku.git] / src / kits / debugger / value / ValueFormatter.cpp
blobeb197305347f639044e868fc3770c45671aa6e90
1 /*
2 * Copyright 2015, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
4 */
7 #include "ValueFormatter.h"
10 ValueFormatter::~ValueFormatter()
15 bool
16 ValueFormatter::SupportsValidation() const
18 return false;
22 bool
23 ValueFormatter::ValidateFormattedValue(const BString& input, type_code type)
24 const
26 return false;
30 status_t
31 ValueFormatter::GetValueFromFormattedInput(const BString& input,
32 type_code type, Value*& _output) const
34 return B_NOT_SUPPORTED;