2009-09-21 04:39:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef STACK_FRAME_DEBUG_INFO_H
|
|
|
|
#define STACK_FRAME_DEBUG_INFO_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <Referenceable.h>
|
|
|
|
|
|
|
|
#include "Types.h"
|
|
|
|
|
|
|
|
|
2009-10-05 03:12:16 +00:00
|
|
|
class ArrayIndexPath;
|
|
|
|
class ArrayType;
|
2009-09-27 04:52:43 +00:00
|
|
|
class Architecture;
|
2009-09-21 04:39:40 +00:00
|
|
|
class BaseType;
|
|
|
|
class DataMember;
|
|
|
|
class StackFrame;
|
|
|
|
class Type;
|
|
|
|
class ValueLocation;
|
|
|
|
|
|
|
|
|
2010-12-16 13:50:30 +00:00
|
|
|
class StackFrameDebugInfo : public BReferenceable {
|
2009-09-21 04:39:40 +00:00
|
|
|
public:
|
2009-10-10 05:05:33 +00:00
|
|
|
StackFrameDebugInfo();
|
2009-09-21 04:39:40 +00:00
|
|
|
virtual ~StackFrameDebugInfo();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // STACK_FRAME_DEBUG_INFO_H
|