btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / apps / debugger / user_interface / gui / value / TableCellFormattedValueEditor.h
blobc38c289a0acf4656add9898a89a47c06d505af24
1 /*
2 * Copyright 2015, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef TABLE_CELL_FORMATTED_VALUE_EDITOR_H
6 #define TABLE_CELL_FORMATTED_VALUE_EDITOR_H
8 #include "TableCellValueEditor.h"
11 class ValueFormatter;
14 class TableCellFormattedValueEditor : public TableCellValueEditor {
15 public:
16 TableCellFormattedValueEditor(
17 Value* initialValue,
18 ValueFormatter* formatter);
19 virtual ~TableCellFormattedValueEditor();
21 protected:
22 ValueFormatter* GetValueFormatter() const
23 { return fValueFormatter; }
25 private:
26 ValueFormatter* fValueFormatter;
30 #endif // TABLE_CELL_FORMATTED_VALUE_EDITOR_H