aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/help.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg/help.h b/toolsrc/include/vcpkg/help.h
index 73549efd7..87ce60b76 100644
--- a/toolsrc/include/vcpkg/help.h
+++ b/toolsrc/include/vcpkg/help.h
@@ -16,4 +16,16 @@ namespace vcpkg::Help
void print_usage();
std::string create_example_string(const std::string& command_and_arguments);
+
+ struct HelpTableFormatter
+ {
+ void format(StringView col1, StringView col2);
+
+ std::string m_str;
+
+ private:
+ void newline_indent();
+ void indent();
+ };
+
}