Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down