mirror of
https://review.haiku-os.org/haiku
synced 2025-02-10 07:39:25 +01:00
44 lines
903 B
C
44 lines
903 B
C
|
/*
|
||
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef TEAM_DEBUG_INFO_H
|
||
|
#define TEAM_DEBUG_INFO_H
|
||
|
|
||
|
#include <ObjectList.h>
|
||
|
#include <Referenceable.h>
|
||
|
|
||
|
#include "ImageInfo.h"
|
||
|
|
||
|
|
||
|
class Architecture;
|
||
|
class DebuggerInterface;
|
||
|
class ImageDebugInfo;
|
||
|
class ImageInfo;
|
||
|
class SpecificTeamDebugInfo;
|
||
|
|
||
|
|
||
|
class TeamDebugInfo : public Referenceable {
|
||
|
public:
|
||
|
TeamDebugInfo(
|
||
|
DebuggerInterface* debuggerInterface,
|
||
|
Architecture* architecture);
|
||
|
~TeamDebugInfo();
|
||
|
|
||
|
status_t Init();
|
||
|
|
||
|
status_t LoadImageDebugInfo(const ImageInfo& imageInfo,
|
||
|
ImageDebugInfo*& _imageDebugInfo);
|
||
|
|
||
|
private:
|
||
|
typedef BObjectList<SpecificTeamDebugInfo> SpecificInfoList;
|
||
|
|
||
|
private:
|
||
|
DebuggerInterface* fDebuggerInterface;
|
||
|
Architecture* fArchitecture;
|
||
|
SpecificInfoList fSpecificInfos;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // TEAM_DEBUG_INFO_H
|