OptionGroupValueObjectDisplay.h revision e4e3e2c0448bb0c77f8f8a3bbb47b951a481d3d8
1//===-- OptionGroupValueObjectDisplay.h -------------------------------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_OptionGroupValueObjectDisplay_h_
11#define liblldb_OptionGroupValueObjectDisplay_h_
12
13// C Includes
14// C++ Includes
15// Other libraries and framework includes
16// Project includes
17#include "lldb/Interpreter/Options.h"
18
19namespace lldb_private {
20
21//-------------------------------------------------------------------------
22// OptionGroupValueObjectDisplay
23//-------------------------------------------------------------------------
24
25class OptionGroupValueObjectDisplay : public OptionGroup
26{
27public:
28
29    OptionGroupValueObjectDisplay ();
30
31    virtual
32    ~OptionGroupValueObjectDisplay ();
33
34
35    virtual uint32_t
36    GetNumDefinitions ();
37
38    virtual const OptionDefinition*
39    GetDefinitions ();
40
41    virtual Error
42    SetOptionValue (CommandInterpreter &interpreter,
43                    uint32_t option_idx,
44                    const char *option_value);
45
46    virtual void
47    OptionParsingStarting (CommandInterpreter &interpreter);
48
49    bool show_types;
50    uint32_t no_summary_depth;
51    bool show_location;
52    bool flat_output;
53    bool use_objc;
54    uint32_t max_depth;
55    uint32_t ptr_depth;
56    lldb::DynamicValueType use_dynamic;
57    bool use_synth;
58};
59
60} // namespace lldb_private
61
62#endif  // liblldb_OptionGroupValueObjectDisplay_h_
63