26 lines
542 B
C++
26 lines
542 B
C++
/*
|
|||
|
|
* 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
|