#include <algorithm>
#include "common.h"
-#include "base_store.h"
+#include "store.h"
#include "settings.h"
#include "conffiles.h"
#include "service_conf.h"
#include "admin_conf.h"
#include "tariff_conf.h"
-#include "base_settings.h"
+#include "module_settings.h"
#include "stg_message.h"
using namespace std;
{
printfd(__FILE__, "Start\n");
-BASE_STORE * fromStore = NULL;
-BASE_STORE * toStore = NULL;
+STORE * fromStore = NULL;
+STORE * toStore = NULL;
SETTINGS * settings = NULL;
return -1;
}
-BASE_STORE * (*GetSourceStore)();
-BASE_STORE * (*GetDestStore)();
-GetSourceStore = (BASE_STORE * (*)())dlsym(src_lh, "GetStore");
+STORE * (*GetSourceStore)();
+STORE * (*GetDestStore)();
+GetSourceStore = (STORE * (*)())dlsym(src_lh, "GetStore");
if (!GetSourceStore)
{
printfd(__FILE__, "Source storage plugin loading failed. GetStore not found: %s\n", dlerror());
delete settings;
return -1;
}
-GetDestStore = (BASE_STORE * (*)())dlsym(dst_lh, "GetStore");
+GetDestStore = (STORE * (*)())dlsym(dst_lh, "GetStore");
if (!GetDestStore)
{
printfd(__FILE__, "Storage plugin (firebird) loading failed. GetStore not found: %s\n", dlerror());