summaryrefslogtreecommitdiff
path: root/swift/src/IceObjc/InputStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'swift/src/IceObjc/InputStream.h')
-rw-r--r--swift/src/IceObjc/InputStream.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/swift/src/IceObjc/InputStream.h b/swift/src/IceObjc/InputStream.h
deleted file mode 100644
index 26dfbbefe76..00000000000
--- a/swift/src/IceObjc/InputStream.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// Copyright (c) ZeroC, Inc. All rights reserved.
-//
-
-#import "Config.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface ICEInputStream : NSObject
--(instancetype) init ICE_SWIFT_UNAVAILABLE("ICEInputStream cannot be initialized from Swift");
--(void*) data;
--(size_t) size;
-@end
-
-#ifdef __cplusplus
-
-@interface ICEInputStream()
-@property (nonatomic, readonly) std::vector<Ice::Byte> bytes;
--(instancetype) initWithBytes:(std::vector<Ice::Byte>)bytes;
-@end
-
-#endif
-
-NS_ASSUME_NONNULL_END