Skip to content

Commit

Permalink
MTRDeviceControllerOverXPC should inherit from MTRDeviceController_Co…
Browse files Browse the repository at this point in the history
…ncrete 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.
  • Loading branch information
bzbarsky-apple committed Sep 19, 2024
1 parent 8318df9 commit a47c3e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/darwin/Framework/CHIP/MTRDeviceControllerOverXPC.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@
*/

#import <Matter/MTRDefines.h>
#import <Matter/MTRDeviceController.h>

#import "MTRDeviceController_Concrete.h"

NS_ASSUME_NONNULL_BEGIN

@class MTRDeviceControllerXPCConnection;

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

@interface MTRDeviceControllerOverXPC : MTRDeviceController
@interface MTRDeviceControllerOverXPC : MTRDeviceController_Concrete

- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
Expand Down

0 comments on commit a47c3e3

Please sign in to comment.