2009-06-28 01:09:21 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
2013-12-09 02:20:11 +04:00
|
|
|
* Copyright 2014, Rene Gollent, rene@gollent.com.
|
2009-06-28 01:09:21 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef SPECIFIC_TEAM_DEBUG_INFO_H
|
|
|
|
#define SPECIFIC_TEAM_DEBUG_INFO_H
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
|
2013-12-09 02:20:11 +04:00
|
|
|
class ImageDebugInfoLoadingState;
|
2009-06-28 01:09:21 +04:00
|
|
|
class ImageInfo;
|
2009-07-02 02:09:33 +04:00
|
|
|
class LocatableFile;
|
2009-06-28 01:09:21 +04:00
|
|
|
class SpecificImageDebugInfo;
|
|
|
|
|
|
|
|
class SpecificTeamDebugInfo {
|
|
|
|
public:
|
|
|
|
virtual ~SpecificTeamDebugInfo();
|
|
|
|
|
|
|
|
virtual status_t CreateImageDebugInfo(const ImageInfo& imageInfo,
|
2009-07-02 02:09:33 +04:00
|
|
|
LocatableFile* imageFile,
|
2013-12-09 02:20:11 +04:00
|
|
|
ImageDebugInfoLoadingState& _state,
|
2009-06-28 01:09:21 +04:00
|
|
|
SpecificImageDebugInfo*& _imageDebugInfo)
|
|
|
|
= 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SPECIFIC_TEAM_DEBUG_INFO_H
|