Files
haiku-beta6/src/apps/debugger/user_interface/gui/value/ValueHandler.cpp
T
Rene Gollent 20df96b029 Debugger: Relocate value_handlers.
- As they are currently only used by the VariablesView, move ValueHandler
  and related code into user_interface/gui.
2016-05-22 15:57:13 -04:00

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;
}