Ilwis-Objects  1.0
GIS and Remote Sensing framework for data access and processing
 All Classes Functions Enumerations Pages
prepareoptions.h
1 #ifndef PREPARATIONPARAMETERS_H
2 #define PREPARATIONPARAMETERS_H
3 
4 namespace Ilwis {
5 
6 // optional parameter for the creation process
7 struct PrepareOptions {
8  PrepareOptions() {}
9  PrepareOptions(const QString filter) { _values["filter"] = filter; }
10  PrepareOptions(double undef) { _values["undefined"] = undef; }
11  PrepareOptions(const QString& un, const QString& pw) { _values["username"] = un; _values["password"] = pw;}
12 
13  std::map<QString, QVariant> _values;
14 };
15 }
16 
17 #endif // PREPARATIONPARAMETERS_H