]> git.stg.codes - stg.git/blobdiff - projects/stargazer/store_loader.h
Ticket 37. The td->tariffConf.changePolicyTimeout added in the
[stg.git] / projects / stargazer / store_loader.h
index a5066926df0831a0800be45cd3b9f1f2de1bcdb1..5245eb572f8c42f8091edc55657ee0fe30238faa 100644 (file)
 
 #include <string>
 
-#include "base_store.h"
-#include "base_settings.h"
-#include "settings.h"
-#include "noncopyable.h"
+#include "stg/module_settings.h"
+#include "stg/noncopyable.h"
 
-class STORE_LOADER : private NONCOPYABLE
-{
+class STORE;
+class SETTINGS_IMPL;
+
+class STORE_LOADER : private NONCOPYABLE {
 public:
-    STORE_LOADER(const SETTINGS & settings);
+    STORE_LOADER(const SETTINGS_IMPL & settings);
     ~STORE_LOADER();
 
     bool Load();
     bool Unload();
 
-    BASE_STORE * GetStore() { return plugin; };
+    STORE & GetStore() { return *plugin; }
+
+    const std::string & GetStrError() const { return errorStr; }
 
-    const std::string & GetStrError() const { return errorStr; };
 private:
+    STORE_LOADER(const STORE_LOADER & rvalue);
+    STORE_LOADER & operator=(const STORE_LOADER & rvalue);
+
     bool isLoaded;
     void * handle;
-    BASE_STORE * plugin;
+    STORE * plugin;
     std::string errorStr;
     MODULE_SETTINGS storeSettings;
     std::string pluginFileName;