2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
16 SymbolInfo(target_addr_t address
,
17 target_size_t size
, uint32 type
,
21 void SetTo(target_addr_t address
, target_size_t size
,
22 uint32 type
, const BString
& name
);
24 target_addr_t
Address() const { return fAddress
; }
25 target_size_t
Size() const { return fSize
; }
26 uint32
Type() const { return fType
; }
27 const char* Name() const { return fName
.String(); }
30 target_addr_t fAddress
;
37 #endif // SYMBOL_INFO_H