131c39dacSJohnny Chen //===-- CommandObjectVersion.h ----------------------------------*- C++ -*-===// 231c39dacSJohnny Chen // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 631c39dacSJohnny Chen // 731c39dacSJohnny Chen //===----------------------------------------------------------------------===// 831c39dacSJohnny Chen 9*cdc514e4SJonas Devlieghere #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTVERSION_H 10*cdc514e4SJonas Devlieghere #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTVERSION_H 1131c39dacSJohnny Chen 1231c39dacSJohnny Chen #include "lldb/Interpreter/CommandObject.h" 1331c39dacSJohnny Chen 1431c39dacSJohnny Chen namespace lldb_private { 1531c39dacSJohnny Chen 1631c39dacSJohnny Chen // CommandObjectVersion 1731c39dacSJohnny Chen 18b9c1b51eSKate Stone class CommandObjectVersion : public CommandObjectParsed { 1931c39dacSJohnny Chen public: 2031c39dacSJohnny Chen CommandObjectVersion(CommandInterpreter &interpreter); 2131c39dacSJohnny Chen 221fb7e202SPavel Labath ~CommandObjectVersion() override; 2331c39dacSJohnny Chen 245a988416SJim Ingham protected: 25b9c1b51eSKate Stone bool DoExecute(Args &args, CommandReturnObject &result) override; 2631c39dacSJohnny Chen }; 2731c39dacSJohnny Chen 2831c39dacSJohnny Chen } // namespace lldb_private 2931c39dacSJohnny Chen 30*cdc514e4SJonas Devlieghere #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTVERSION_H 31