Skip to content

Commit 9a15b46

Browse files
[Code Driven Cluster] Decouple Service Area Cluster part 1 (project-chip#72642)
* Initial commit * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Restyled --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 482fdba commit 9a15b46

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/clusters/service-area-server/service-area-server.cpp renamed to src/app/clusters/service-area-server/ServiceAreaCluster.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
*
1717
*/
1818

19-
#include "service-area-server.h"
2019
#include "service-area-delegate.h"
20+
#include "service-area-server.h"
2121

2222
#include <app-common/zap-generated/attributes/Accessors.h>
2323
#include <app-common/zap-generated/cluster-objects.h>

src/app/clusters/service-area-server/app_config_dependent_sources.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
TARGET_SOURCES(
1717
${APP_TARGET}
1818
PRIVATE
19+
"${CLUSTER_DIR}/ServiceAreaCluster.cpp"
1920
"${CLUSTER_DIR}/service-area-cluster-objects.h"
2021
"${CLUSTER_DIR}/service-area-delegate.h"
21-
"${CLUSTER_DIR}/service-area-server.cpp"
2222
"${CLUSTER_DIR}/service-area-server.h"
2323
"${CLUSTER_DIR}/service-area-storage-delegate.cpp"
2424
"${CLUSTER_DIR}/service-area-storage-delegate.h"

src/app/clusters/service-area-server/app_config_dependent_sources.gni

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
app_config_dependent_sources = [
15+
"ServiceAreaCluster.cpp",
1516
"service-area-cluster-objects.h",
1617
"service-area-delegate.h",
17-
"service-area-server.cpp",
1818
"service-area-server.h",
1919
"service-area-storage-delegate.cpp",
2020
"service-area-storage-delegate.h",

0 commit comments

Comments
 (0)