diff options
Diffstat (limited to 'source/Commands/CommandObjectHelp.h')
-rw-r--r-- | source/Commands/CommandObjectHelp.h | 43 |
1 files changed, 20 insertions, 23 deletions
diff --git a/source/Commands/CommandObjectHelp.h b/source/Commands/CommandObjectHelp.h index 7db659c..1dd7b9b 100644 --- a/source/Commands/CommandObjectHelp.h +++ b/source/Commands/CommandObjectHelp.h @@ -29,17 +29,16 @@ public: CommandObjectHelp (CommandInterpreter &interpreter); - virtual - ~CommandObjectHelp (); + ~CommandObjectHelp() override; - virtual int - HandleCompletion (Args &input, - int &cursor_index, - int &cursor_char_position, - int match_start_point, - int max_return_elements, - bool &word_complete, - StringList &matches); + int + HandleCompletion(Args &input, + int &cursor_index, + int &cursor_char_position, + int match_start_point, + int max_return_elements, + bool &word_complete, + StringList &matches) override; class CommandOptions : public Options { @@ -50,11 +49,10 @@ public: { } - virtual - ~CommandOptions (){} + ~CommandOptions() override {} - virtual Error - SetOptionValue (uint32_t option_idx, const char *option_arg) + Error + SetOptionValue(uint32_t option_idx, const char *option_arg) override { Error error; const int short_option = m_getopt_table[option_idx].val; @@ -79,7 +77,7 @@ public: } void - OptionParsingStarting () + OptionParsingStarting() override { m_show_aliases = true; m_show_user_defined = true; @@ -87,7 +85,7 @@ public: } const OptionDefinition* - GetDefinitions () + GetDefinitions() override { return g_option_table; } @@ -103,22 +101,21 @@ public: bool m_show_hidden; }; - virtual Options * - GetOptions () + Options * + GetOptions() override { return &m_options; } protected: - virtual bool - DoExecute (Args& command, - CommandReturnObject &result); + bool + DoExecute(Args& command, + CommandReturnObject &result) override; private: CommandOptions m_options; - }; } // namespace lldb_private -#endif // liblldb_CommandObjectHelp_h_ +#endif // liblldb_CommandObjectHelp_h_ |