Skip to content

Commit

Permalink
Fix includes
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Jan 20, 2025
1 parent 742dc89 commit a39551e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/app/InteractionModelEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
*/

#include "InteractionModelEngine.h"
#include "app/data-model-provider/MetadataList.h"
#include "app/data-model/List.h"

#include <cinttypes>

Expand All @@ -39,9 +37,11 @@
#include <app/EventPathParams.h>
#include <app/RequiredPrivilege.h>
#include <app/data-model-provider/ActionReturnStatus.h>
#include <app/data-model-provider/MetadataList.h>
#include <app/data-model-provider/MetadataLookup.h>
#include <app/data-model-provider/MetadataTypes.h>
#include <app/data-model-provider/OperationTypes.h>
#include <app/data-model/List.h>
#include <app/util/IMClusterCommandHandler.h>
#include <app/util/af-types.h>
#include <app/util/endpoint-config-api.h>
Expand Down
4 changes: 2 additions & 2 deletions src/app/clusters/descriptor/descriptor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
*/

#include "descriptor.h"
#include "app/data-model-provider/MetadataList.h"
#include "app/data-model/List.h"

#include <app-common/zap-generated/cluster-objects.h>
#include <app-common/zap-generated/ids/Attributes.h>
#include <app-common/zap-generated/ids/Clusters.h>
#include <app/AttributeAccessInterface.h>
#include <app/AttributeAccessInterfaceRegistry.h>
#include <app/InteractionModelEngine.h>
#include <app/data-model-provider/MetadataList.h>
#include <app/data-model-provider/MetadataTypes.h>
#include <app/data-model/List.h>
#include <app/util/attribute-storage.h>
#include <app/util/endpoint-config-api.h>
#include <lib/core/CHIPError.h>
Expand Down
1 change: 0 additions & 1 deletion src/app/data-model-provider/MetadataList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
#include <app/data-model-provider/MetadataList.h>

#include <cassert>
#include <lib/core/CHIPError.h>
#include <lib/support/CHIPMem.h>
#include <lib/support/CodeUtils.h>
Expand Down
3 changes: 2 additions & 1 deletion src/app/data-model-provider/MetadataLookup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "app/data-model-provider/MetadataList.h"
#include <app/data-model-provider/MetadataLookup.h>

#include <app/data-model-provider/MetadataList.h>

namespace chip {
namespace app {
namespace DataModel {
Expand Down
3 changes: 2 additions & 1 deletion src/app/data-model-provider/MetadataTypes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
* limitations under the License.
*/

#include "app/data-model-provider/MetadataList.h"
#include <app/data-model-provider/MetadataTypes.h>

#include <app/data-model-provider/MetadataList.h>

namespace chip {
namespace app {
namespace DataModel {
Expand Down

0 comments on commit a39551e

Please sign in to comment.