git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39869 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
409 B
C++
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
|