X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/687631532197750696d35aa12c40406b04fb878d..83cd74d5ee7b06fcc8f7f15eec5520ccc1633679:/projects/stargazer/store_loader.h diff --git a/projects/stargazer/store_loader.h b/projects/stargazer/store_loader.h index c7911eea..5245eb57 100644 --- a/projects/stargazer/store_loader.h +++ b/projects/stargazer/store_loader.h @@ -47,10 +47,14 @@ public: 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;