mirror of
https://gitee.com/openharmony/developtools_hiperf
synced 2024-11-23 15:39:47 +00:00
e356db195a
Signed-off-by: wenlong12 <wenlong12@huawei.com> Signed-off-by: wenlong12 <wwx1097114@DESKTOP-2021EGU.localdomain>
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#ifndef HIPERF_SUBCOMMAND_HELP_H_
|
|
#define HIPERF_SUBCOMMAND_HELP_H_
|
|
|
|
#include "option.h"
|
|
#include "subcommand.h"
|
|
namespace OHOS {
|
|
namespace Developtools {
|
|
namespace HiPerf {
|
|
class SubCommandHelp : public SubCommand {
|
|
public:
|
|
SubCommandHelp()
|
|
// clang-format off
|
|
: SubCommand("help", "Show more help information for hiperf",
|
|
"Usage: hiperf help [subcommand]\n"
|
|
" By default, all options help information and subcommand brief information are output.\n"
|
|
" If you provide a subcommand, only the help information for this command will be output.\n\n"
|
|
)
|
|
// clang-format on
|
|
{
|
|
Option::RegisterMainOption("--help", "show help", OnHelp);
|
|
Option::RegisterMainOption("-h", "show help", OnHelp);
|
|
}
|
|
|
|
bool OnSubCommand(std::vector<std::string> &args) override;
|
|
static void RegisterSubCommandHelp(void);
|
|
static bool OnHelp(std::vector<std::string> &args);
|
|
};
|
|
} // namespace HiPerf
|
|
} // namespace Developtools
|
|
} // namespace OHOS
|
|
#endif // HIPERF_SUBCOMMAND_HELP_H_
|