diff --git a/src/apps/debugger/Jamfile b/src/apps/debugger/Jamfile index 44c56d0a89..c2aaa66bd9 100644 --- a/src/apps/debugger/Jamfile +++ b/src/apps/debugger/Jamfile @@ -124,9 +124,10 @@ Application Debugger : # ids FunctionID.cpp + FunctionParameterID.cpp LocalVariableID.cpp ObjectID.cpp - FunctionParameterID.cpp + ReturnValueID.cpp # jobs GetCPUStateJob.cpp diff --git a/src/apps/debugger/ids/ReturnValueID.cpp b/src/apps/debugger/ids/ReturnValueID.cpp new file mode 100644 index 0000000000..38e6c841b7 --- /dev/null +++ b/src/apps/debugger/ids/ReturnValueID.cpp @@ -0,0 +1,13 @@ +/* + * Copyright 2012, Rene Gollent, rene@gollent.com. + * Distributed under the terms of the MIT License. + */ + + +#include "ReturnValueID.h" + + +ReturnValueID::~ReturnValueID() +{ +} + diff --git a/src/apps/debugger/ids/ReturnValueID.h b/src/apps/debugger/ids/ReturnValueID.h new file mode 100644 index 0000000000..021a9175c9 --- /dev/null +++ b/src/apps/debugger/ids/ReturnValueID.h @@ -0,0 +1,18 @@ +/* + * Copyright 2012, Rene Gollent, rene@gollent.com. + * Distributed under the terms of the MIT License. + */ +#ifndef RETURN_VALUE_ID_H +#define RETURN_VALUE_ID_H + + +#include "ObjectID.h" + + +class ReturnValueID : public ObjectID { +public: + virtual ~ReturnValueID(); +}; + + +#endif // RETURN_VALUE_ID_H