src/Configuration.h
branchv_0
changeset 20 90ae67de2f68
parent 16 15ee963675af
equal deleted inserted replaced
19:0d858e0eedf8 20:90ae67de2f68
    37 
    37 
    38 };
    38 };
    39 
    39 
    40 class Configuration {
    40 class Configuration {
    41 public:
    41 public:
       
    42 
       
    43 	enum class ReadTypes {
       
    44 		AUTO,
       
    45 		TRUE,
       
    46 		FALSE,
       
    47 	};
       
    48 
       
    49 	ReadTypes readTypes = ReadTypes::AUTO;
    42 	relpipe::writer::string_t relation = L"csv";
    50 	relpipe::writer::string_t relation = L"csv";
    43 	std::vector<AttributeRecipe> attributes;
    51 	std::vector<AttributeRecipe> attributes;
    44 
    52 
    45 	virtual ~Configuration() {
    53 	virtual ~Configuration() {
    46 	}
    54 	}