blob: caf436e576f5f7e3b6070dd6dbf21284554efc6d [file] [log] [blame]
//===-- OptionValueUUID.h --------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_OptionValueUUID_h_
#define liblldb_OptionValueUUID_h_
// C Includes
// C++ Includes
// Other libraries and framework includes
// Project includes
#include "lldb/Core/UUID.h"
#include "lldb/Interpreter/OptionValue.h"
namespace lldb_private {
class OptionValueUUID : public OptionValue
{
public:
OptionValueUUID () :
OptionValue(),
m_uuid ()
{
}
OptionValueUUID (const UUID &uuid) :
OptionValue(),
m_uuid (uuid)
{
}
virtual
~OptionValueUUID()
{
}
//---------------------------------------------------------------------
// Virtual subclass pure virtual overrides
//---------------------------------------------------------------------
virtual OptionValue::Type
GetType () const
{
return eTypeUUID;
}
virtual void
DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask);
virtual Error
SetValueFromCString (const char *value,
VarSetOperationType op = eVarSetOperationAssign);
virtual bool
Clear ()
{
m_uuid.Clear();
m_value_was_set = false;
return true;
}
virtual lldb::OptionValueSP
DeepCopy () const;
//---------------------------------------------------------------------
// Subclass specific functions
//---------------------------------------------------------------------
UUID &
GetCurrentValue()
{
return m_uuid;
}
const UUID &
GetCurrentValue() const
{
return m_uuid;
}
void
SetCurrentValue (const UUID &value)
{
m_uuid = value;
}
virtual size_t
AutoComplete (CommandInterpreter &interpreter,
const char *s,
int match_start_point,
int max_return_elements,
bool &word_complete,
StringList &matches);
protected:
UUID m_uuid;
};
} // namespace lldb_private
#endif // liblldb_OptionValueUUID_h_