diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2022-08-24 14:42:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-24 11:42:55 -0700 |
| commit | 3746a47ce407b14c4afbfc5b625513cf81b5e890 (patch) | |
| tree | 2b925a4229b7c6bd093e1720d8e0b3447b9acdcb /source/core | |
| parent | 14d99e80c47a0daac6ef76b5d68511c828147265 (diff) | |
Improvements around file tracking and Artifacts (#2379)
Diffstat (limited to 'source/core')
| -rw-r--r-- | source/core/slang-shared-library.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/core/slang-shared-library.h b/source/core/slang-shared-library.h index 9015219b1..ab91a6501 100644 --- a/source/core/slang-shared-library.h +++ b/source/core/slang-shared-library.h @@ -81,6 +81,11 @@ class ScopeSharedLibrary : public DefaultSharedLibrary public: typedef DefaultSharedLibrary Super; + static ComPtr<ISlangSharedLibrary> create(const SharedLibrary::Handle sharedLibraryHandle, ISlangUnknown* scope) + { + return ComPtr< ISlangSharedLibrary>(new ScopeSharedLibrary(sharedLibraryHandle, scope)); + } + /// Ctor ScopeSharedLibrary(const SharedLibrary::Handle sharedLibraryHandle, ISlangUnknown* scope) : Super(sharedLibraryHandle), |
