X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/641204dfbdb9fc870cdd2e7f9e3169a44693e7bf..ad490714c7cfe5eb3bb9bf043d08e5efe6107bf3:/projects/stargazer/store_loader.h diff --git a/projects/stargazer/store_loader.h b/projects/stargazer/store_loader.h index a5066926..a9bb3a44 100644 --- a/projects/stargazer/store_loader.h +++ b/projects/stargazer/store_loader.h @@ -33,27 +33,27 @@ #include -#include "base_store.h" -#include "base_settings.h" -#include "settings.h" +#include "module_settings.h" #include "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: bool isLoaded; void * handle; - BASE_STORE * plugin; + STORE * plugin; std::string errorStr; MODULE_SETTINGS storeSettings; std::string pluginFileName;