haiku/src/apps/debugger/model/SourceCode.h

32 lines
696 B
C
Raw Normal View History

/*
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
* Distributed under the terms of the MIT License.
*/
#ifndef SOURCE_CODE_H
#define SOURCE_CODE_H
#include <Referenceable.h>
#include "ArchitectureTypes.h"
class Statement;
class SourceCode : public Referenceable {
public:
virtual ~SourceCode();
virtual int32 CountLines() const = 0;
virtual const char* LineAt(int32 index) const = 0;
virtual int32 CountStatements() const = 0;
virtual Statement* StatementAt(int32 index) const = 0;
virtual Statement* StatementAtLine(int32 index) const = 0;
virtual Statement* StatementAtAddress(target_addr_t address)
const = 0;
};
#endif // SOURCE_CODE_H