From 2df9178f64cbaf9fa6d2544cda07879c8f45f598 Mon Sep 17 00:00:00 2001 From: Sakars Date: Mon, 6 Jan 2025 01:07:17 +0000 Subject: [PATCH] help update --- src/main.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index f348dce..20cd567 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -63,6 +63,21 @@ int main(int argc, char* argv[]) { << " Note: The identifier must be unique and a valid C++ " "identifier" << std::endl; + std::cout << " --namespace, -n: Specify the global namespace" + << std::endl; + std::cout << " --no-namespace, -nn: Do not use a global namespace" + << std::endl; + std::cout << " --define-prefix, -dp: Specify the prefix for #define " + "guards" + << std::endl; + std::cout << " --use-pragma, -up: Use #pragma once for header guards" + << std::endl; + std::cout << " --use-ifndef, -ui: Use #ifndef for header guards" + << std::endl; + std::cout << " --indent, -i: Specify the indentation string" + << std::endl; + std::cout << " --no-combine, -nc: Do not combine source files into one" + << std::endl; return 0; }