2 * Copyright 2013, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
5 #ifndef RETURN_VALUE_INFO_H
6 #define RETURN_VALUE_INFO_H
9 #include "ObjectList.h"
10 #include "Referenceable.h"
17 class ReturnValueInfo
: public BReferenceable
{
20 ReturnValueInfo(target_addr_t address
,
24 void SetTo(target_addr_t address
, CpuState
* state
);
26 target_addr_t
SubroutineAddress() const
28 CpuState
* State() const { return fState
; }
31 target_addr_t fAddress
;
36 typedef BObjectList
<ReturnValueInfo
> ReturnValueInfoList
;
39 #endif // RETURN_VALUE_INFO_H