blob: b9a7384b0a3f7e0a8a8d58f2f3e6277e90a0aa43 [file] [log] [blame]
/**
*
* Copyright (c) 2020-2022 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#import <Foundation/Foundation.h>
#ifndef ContentApp_h
#define ContentApp_h
@interface ContentApp : NSObject
@property uint16_t endpointId;
@property NSMutableArray * clusterIds;
/**
@brief true, if all the fields are initialized, false otherwise
*/
@property BOOL isInitialized;
- (instancetype)initWithEndpointId:(uint16_t)endpointId clusterIds:(NSMutableArray *)clusterIds;
- (BOOL)supportsClusterWithId:(uint32_t)clusterId;
- (BOOL)supportsApplicationLauncher;
- (BOOL)supportsContentLauncher;
- (BOOL)supportsMediaPlayback;
- (BOOL)supportsLevelControl;
- (BOOL)supportsTargetNavigator;
@end
#endif /* ContentApp_h */