We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c91e7a commit 6bc55f5Copy full SHA for 6bc55f5
app/optionChecker/optionChecker.cpp
@@ -5,7 +5,6 @@
5
6
#include <string>
7
#include <iostream>
8
-#include <iomanip>
9
#include <utility> //pair
10
11
int optionChecker( const std::string& inputfilename )
@@ -23,8 +22,9 @@ int optionChecker( const std::string& inputfilename )
23
22
{
24
std::cout << std::left;
25
std::cout << "****************************" << std::endl;
26
- std::cout << std::setw(30) << option.getName();
27
- std::cout << ": " << option.getHelp() << std::endl;
+ std::cout << "Name: " << option.getName() << std::endl;
+ std::cout << "Unit : " << option.getUnit() << std::endl;
+ std::cout << "Help: " << option.getHelp() << std::endl;
28
std::cout << "Type: " << option.getType() << std::endl;
29
30
// get default value
0 commit comments