Skip to content
Snippets Groups Projects
Commit d4288d45 authored by Kazuyuki Omi's avatar Kazuyuki Omi
Browse files

minor changes in config

parent df248826
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -5,14 +5,17 @@
#include <cstring>
#include <cstdio>
#include <iomanip>
#include <limits>
typedef struct setting
{
int min = -9999999;
int max = 98888999;
//int min = -9999999;
int min = std::numeric_limits<int>::min();
//int max = 98888999;
int max = std::numeric_limits<int>::max();
int width = 3;
std::string align = "left";
int stretch = -1;
int stretch = -1;//default
int header = 1;
std::vector<std::vector<int>> numbers;
int max_size_vector = 0;
......@@ -39,7 +42,6 @@ void get_error_102(setting &a)
void get_config(setting &a)
{
std::string line;
std::cout << "start configration" << std::endl;
while (std::getline(std::cin, line))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment