/* * Copyright 2015, Rene Gollent, rene@gollent.com. * Distributed under the terms of the MIT License. */ #ifndef TABLE_CELL_BOOL_EDITOR_H #define TABLE_CELL_BOOL_EDITOR_H #include #include "TableCellOptionPopUpEditor.h" class TableCellBoolEditor : public TableCellOptionPopUpEditor { public: TableCellBoolEditor(::Value* initialValue, ValueFormatter* formatter); virtual ~TableCellBoolEditor(); virtual status_t ConfigureOptions(); protected: virtual status_t GetSelectedValue(::Value*& _value) const; }; #endif // TABLE_CELL_BOOL_EDITOR_H