+ remove 'bind' param
from datasource (base class) ctor (FIXME: would be better to use parameters to pass to specific options to concrete datasource implementations)
This commit is contained in:
parent
4361177fc2
commit
da983367a8
1 changed files with 2 additions and 2 deletions
|
@ -73,11 +73,11 @@ public:
|
||||||
Raster
|
Raster
|
||||||
};
|
};
|
||||||
|
|
||||||
datasource (parameters const& params, bool bind=true)
|
datasource (parameters const& params)
|
||||||
: params_(params),
|
: params_(params),
|
||||||
is_bound_(false)
|
is_bound_(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Get the configuration parameters of the data source.
|
* @brief Get the configuration parameters of the data source.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue