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
14class ArrayIndexPath;
15class ArrayType;
16class Architecture;
17class BaseType;
18class DataMember;
19class StackFrame;
20class Type;
21class ValueLocation;
22
23
24class StackFrameDebugInfo : public BReferenceable {
25public:
26								StackFrameDebugInfo();
27	virtual						~StackFrameDebugInfo();
28};
29
30
31#endif	// STACK_FRAME_DEBUG_INFO_H
32