summaryrefslogtreecommitdiff
path: root/source/core/slang-destroyable.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-destroyable.h')
-rw-r--r--source/core/slang-destroyable.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/core/slang-destroyable.h b/source/core/slang-destroyable.h
index bf373ba33..390b16e7c 100644
--- a/source/core/slang-destroyable.h
+++ b/source/core/slang-destroyable.h
@@ -9,15 +9,6 @@
namespace Slang
{
-/* Adapter interface to make a non castable type work as ICastable */
-class IUnknownCastableAdapter : public ICastable
-{
- SLANG_COM_INTERFACE(0x8b4aad81, 0x4934, 0x4a67, { 0xb2, 0xe2, 0xe9, 0x17, 0xfc, 0x29, 0x12, 0x54 } );
-
- /// When using the adapter, this provides a way to directly get the internal no ICastable type
- virtual SLANG_NO_THROW ISlangUnknown* SLANG_MCALL getContained() = 0;
-};
-
/* An interface that allows for an object to implement 'destruction'. A destroyed
interface/object should release any other contained references.
Behavior of an interface that is IDestroyed should be defined on the interface. Typically