- As they are currently only used by the VariablesView, move ValueHandler and related code into user_interface/gui.
32 lines
528 B
C++
32 lines
528 B
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
|
* Copyright 2015, Rene Gollent, [email protected].
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
|
|
#include "ValueHandler.h"
|
|
|
|
|
|
ValueHandler::~ValueHandler()
|
|
{
|
|
}
|
|
|
|
|
|
status_t
|
|
ValueHandler::CreateTableCellValueSettingsMenu(Value* value, Settings* settings,
|
|
SettingsMenu*& _menu)
|
|
{
|
|
_menu = NULL;
|
|
return B_OK;
|
|
}
|
|
|
|
|
|
status_t
|
|
ValueHandler::GetTableCellValueEditor(Value* value, Settings* settings,
|
|
TableCellValueEditor*& _editor)
|
|
{
|
|
_editor = NULL;
|
|
return B_OK;
|
|
}
|