Skip to content

Commit a47c3e3

Browse files
MTRDeviceControllerOverXPC should inherit from MTRDeviceController_Concrete for now.
That's what it used to do, and for now we should just leave it be. Longer-term, we need to figure out what should happen with MTRDeviceControllerOverXPC; whether it should inherit from the base MTRDeviceController, or just not exist, or what.
1 parent 8318df9 commit a47c3e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/darwin/Framework/CHIP/MTRDeviceControllerOverXPC.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@
1616
*/
1717

1818
#import <Matter/MTRDefines.h>
19-
#import <Matter/MTRDeviceController.h>
19+
20+
#import "MTRDeviceController_Concrete.h"
2021

2122
NS_ASSUME_NONNULL_BEGIN
2223

2324
@class MTRDeviceControllerXPCConnection;
2425

2526
typedef NSXPCConnection * _Nonnull (^MTRXPCConnectBlock)(void);
2627

27-
@interface MTRDeviceControllerOverXPC : MTRDeviceController
28+
@interface MTRDeviceControllerOverXPC : MTRDeviceController_Concrete
2829

2930
- (instancetype)init NS_UNAVAILABLE;
3031
+ (instancetype)new NS_UNAVAILABLE;

0 commit comments

Comments
 (0)