summaryrefslogtreecommitdiffstats
path: root/source/core/slang-shared-library.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-shared-library.h')
-rw-r--r--source/core/slang-shared-library.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/source/core/slang-shared-library.h b/source/core/slang-shared-library.h
index 0a63e570e..9015219b1 100644
--- a/source/core/slang-shared-library.h
+++ b/source/core/slang-shared-library.h
@@ -76,30 +76,6 @@ class DefaultSharedLibrary : public ISlangSharedLibrary, public ComBaseObject
SharedLibrary::Handle m_sharedLibraryHandle = nullptr;
};
-class TemporarySharedLibrary : public DefaultSharedLibrary
-{
-public:
- typedef DefaultSharedLibrary Super;
-
- /// Get the path to the shared library
- const String& getPath() const { return m_path; }
-
- /// Ctor
- TemporarySharedLibrary(const SharedLibrary::Handle sharedLibraryHandle, const String& path):
- Super(sharedLibraryHandle),
- m_path(path)
- {
- }
-
- virtual ~TemporarySharedLibrary();
-
- /// Any files specified in this set will be deleted on exit
- RefPtr<TemporaryFileSet> m_temporaryFileSet;
-
-protected:
- String m_path;
-};
-
class ScopeSharedLibrary : public DefaultSharedLibrary
{
public: