xref: /haiku/src/kits/debugger/value/ValueFormatter.cpp (revision a3e794ae459fec76826407f8ba8c94cd3535f128)
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 
10 ValueFormatter::~ValueFormatter()
11 {
12 }
13 
14 
15 bool
16 ValueFormatter::SupportsValidation() const
17 {
18 	return false;
19 }
20 
21 
22 bool
23 ValueFormatter::ValidateFormattedValue(const BString& input, type_code type)
24 	const
25 {
26 	return false;
27 }
28 
29 
30 status_t
31 ValueFormatter::GetValueFromFormattedInput(const BString& input,
32 	type_code type, Value*& _output) const
33 {
34 	return B_NOT_SUPPORTED;
35 }
36