fce4895d18
- Add subfolder src/kits/debugger which contains the debugger's core functionality and lower layers. Correspondingly add headers/private/debugger for shared headers to be used by clients such as the Debugger application and eventual remote_debug_server. Adjust various files to account for differences as a result of the split and moves. - Add libdebugger.so to minimal Jamfile.
35 lines
738 B
C++
35 lines
738 B
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef VARIABLE_VALUE_NODE_CHILD_H
|
|
#define VARIABLE_VALUE_NODE_CHILD_H
|
|
|
|
|
|
#include "ValueNode.h"
|
|
|
|
|
|
class Variable;
|
|
|
|
|
|
class VariableValueNodeChild : public ValueNodeChild {
|
|
public:
|
|
VariableValueNodeChild(Variable* variable);
|
|
virtual ~VariableValueNodeChild();
|
|
|
|
virtual const BString& Name() const;
|
|
virtual Type* GetType() const;
|
|
virtual ValueNode* Parent() const;
|
|
|
|
Variable* GetVariable() const { return fVariable; };
|
|
|
|
virtual status_t ResolveLocation(ValueLoader* valueLoader,
|
|
ValueLocation*& _location);
|
|
|
|
private:
|
|
Variable* fVariable;
|
|
};
|
|
|
|
|
|
#endif // VARIABLE_VALUE_NODE_CHILD_H
|