You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. //
  2. // Created by robin on 4/6/16.
  3. //
  4. #include "AbstractSql.h"
  5. AbstractSql::~AbstractSql()
  6. {
  7. }
  8. AbstractSql::AbstractSql(const SqlConfiguration &masterConfig, const SqlConfiguration &slaveConfig)
  9. : _masterConfig(masterConfig)
  10. , _slaveConfig(slaveConfig)
  11. {
  12. }