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.
28 lines
549 B
C++
28 lines
549 B
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef VALUE_H
|
|
#define VALUE_H
|
|
|
|
|
|
#include <String.h>
|
|
|
|
#include <Variant.h>
|
|
|
|
|
|
class Value : public BReferenceable {
|
|
public:
|
|
virtual ~Value();
|
|
|
|
virtual bool ToString(BString& _string) const = 0;
|
|
virtual bool ToVariant(BVariant& _value) const = 0;
|
|
|
|
virtual bool operator==(const Value& other) const = 0;
|
|
inline bool operator!=(const Value& other) const
|
|
{ return !(*this == other); }
|
|
};
|
|
|
|
|
|
#endif // VALUE_H
|