fce4895d18
- Add subfolder src/kits/debugger which contains the debugger's core functionality and lower layers. Correspondingly add headers/private/debugger for shared headers to be used by clients such as the Debugger application and eventual remote_debug_server. Adjust various files to account for differences as a result of the split and moves. - Add libdebugger.so to minimal Jamfile.
47 lines
776 B
C++
47 lines
776 B
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef OBJECT_ID_H
|
|
#define OBJECT_ID_H
|
|
|
|
|
|
#include <Referenceable.h>
|
|
|
|
|
|
class ObjectID : public BReferenceable {
|
|
public:
|
|
ObjectID();
|
|
virtual ~ObjectID();
|
|
|
|
inline uint32 HashValue() const;
|
|
|
|
virtual bool operator==(const ObjectID& other) const = 0;
|
|
inline bool operator!=(const ObjectID& other) const;
|
|
|
|
protected:
|
|
virtual uint32 ComputeHashValue() const = 0;
|
|
|
|
protected:
|
|
mutable uint32 fHashValue;
|
|
};
|
|
|
|
|
|
uint32
|
|
ObjectID::HashValue() const
|
|
{
|
|
if (fHashValue == 0)
|
|
fHashValue = ComputeHashValue();
|
|
return fHashValue;
|
|
}
|
|
|
|
|
|
bool
|
|
ObjectID::operator!=(const ObjectID& other) const
|
|
{
|
|
return !(*this == other);
|
|
}
|
|
|
|
|
|
#endif // OBJECT_ID_H
|