src/Configuration.h
branchv_0
changeset 5 dbf093b8b9ac
parent 0 17fc678e0a94
equal deleted inserted replaced
4:e5baa07d6e60 5:dbf093b8b9ac
    17 #pragma once
    17 #pragma once
    18 
    18 
    19 #include <vector>
    19 #include <vector>
    20 #include <iostream>
    20 #include <iostream>
    21 
    21 
    22 #include <relpipe/reader/typedefs.h>
    22 #include <relpipe/common/type/typedefs.h>
    23 
    23 
    24 
    24 
    25 namespace relpipe {
    25 namespace relpipe {
    26 namespace out {
    26 namespace out {
    27 namespace x11 {
    27 namespace x11 {
    28 
    28 
    29 class Configuration {
    29 class Configuration {
    30 public:
    30 public:
    31 	relpipe::reader::boolean_t writeHeader = true;
    31 	relpipe::common::type::Boolean debug = false;
       
    32 	relpipe::common::type::Boolean dryRun = false;
    32 
    33 
    33 	virtual ~Configuration() {
    34 	virtual ~Configuration() {
    34 	}
    35 	}
    35 };
    36 };
    36 
    37