Files
haiku-beta6/src/apps/debugger/arch/RegisterMap.h
T
Ingo Weinhold c3e066cf6d Replaced uses of obsolescent BReference[able] API.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39869 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-12-16 13:50:30 +00:00

22 lines
409 B
C++

/*
* Copyright 2009, Ingo Weinhold, [email protected].
* Distributed under the terms of the MIT License.
*/
#ifndef REGISTER_MAP_H
#define REGISTER_MAP_H
#include <Referenceable.h>
class RegisterMap : public BReferenceable {
public:
virtual ~RegisterMap();
virtual int32 CountRegisters() const = 0;
virtual int32 MapRegisterIndex(int32 index) const = 0;
};
#endif // REGISTER_MAP_H