Files
haiku-beta6/src/apps/debugger/user_interface/gui/value/ValueHandler.cpp
T

32 lines
528 B
C++
Raw Normal View History

2009-11-05 18:15:21 +00:00
/*
* Copyright 2009, Ingo Weinhold, [email protected].
2015-05-31 14:30:19 -04:00
* Copyright 2015, Rene Gollent, [email protected].
2009-11-05 18:15:21 +00:00
* 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;
}
2015-05-31 14:30:19 -04:00
status_t
ValueHandler::GetTableCellValueEditor(Value* value, Settings* settings,
TableCellValueEditor*& _editor)
{
_editor = NULL;
return B_OK;
}