/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep #include #include #include #include #include #include class cmExecutionStatus; class cmSubcommandTable { public: using Command = bool (*)(std::vector const&, cmExecutionStatus&); using Elem = std::pair; using InitElem = std::pair; cmSubcommandTable(std::initializer_list init); bool operator()(cm::string_view key, std::vector const& args, cmExecutionStatus& status) const; private: std::vector Impl; };