1 /* 2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef STACK_FRAME_DEBUG_INFO_H 6 #define STACK_FRAME_DEBUG_INFO_H 7 8 9 #include <Referenceable.h> 10 11 #include "Types.h" 12 13 14 class ArrayIndexPath; 15 class ArrayType; 16 class Architecture; 17 class BaseType; 18 class DataMember; 19 class StackFrame; 20 class Type; 21 class ValueLocation; 22 23 24 class StackFrameDebugInfo : public BReferenceable { 25 public: 26 StackFrameDebugInfo(); 27 virtual ~StackFrameDebugInfo(); 28 }; 29 30 31 #endif // STACK_FRAME_DEBUG_INFO_H 32