Files
haiku-beta6/headers/private/debugger/model/TeamFunctionSourceInformation.h
T

26 lines
542 B
C++
Raw Normal View History

2016-09-09 22:41:07 -04:00
/*
* Copyright 2016, Rene Gollent, [email protected].
* Distributed under the terms of the MIT License.
*/
#ifndef TEAM_FUNCTION_SOURCE_INFORMATION_H
#define TEAM_FUNCTION_SOURCE_INFORMATION_H
#include <SupportDefs.h>
class FunctionDebugInfo;
class SourceCode;
class TeamFunctionSourceInformation {
public:
virtual ~TeamFunctionSourceInformation();
virtual status_t GetActiveSourceCode(FunctionDebugInfo* info,
SourceCode*& _code) = 0;
// returns reference
};
#endif // TEAM_FUNCTION_SOURCE_INFORMATION_H