X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ede91934442fd804d7b818971a44e3ad795cb01f..55a204e46261850f1a26ebafc45fb3ba6f0604c6:/projects/stargazer/store_loader.h diff --git a/projects/stargazer/store_loader.h b/projects/stargazer/store_loader.h index 1f624e1a..5245eb57 100644 --- a/projects/stargazer/store_loader.h +++ b/projects/stargazer/store_loader.h @@ -33,24 +33,28 @@ #include -#include "module_settings.h" -#include "noncopyable.h" +#include "stg/module_settings.h" +#include "stg/noncopyable.h" class STORE; -class SETTINGS; +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(); - STORE * GetStore() { return plugin; } + STORE & GetStore() { return *plugin; } 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; STORE * plugin;