Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / app / MessageDef / ListBuilder.cpp
1 /**
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *    Copyright (c) 2018 Google LLC.
5  *    Copyright (c) 2016-2017 Nest Labs, Inc.
6  *    Licensed under the Apache License, Version 2.0 (the "License");
7  *    you may not use this file except in compliance with the License.
8  *    You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *    Unless required by applicable law or agreed to in writing, software
13  *    distributed under the License is distributed on an "AS IS" BASIS,
14  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *    See the License for the specific language governing permissions and
16  *    limitations under the License.
17  */
18 /**
19  *    @file
20  *      This file defines List builder in CHIP interaction model
21  *
22  */
23
24 #include "ListBuilder.h"
25
26 #include <inttypes.h>
27 #include <stdarg.h>
28 #include <stdio.h>
29
30 using namespace chip;
31 using namespace chip::TLV;
32
33 namespace chip {
34 namespace app {
35 ListBuilder::ListBuilder() {}
36
37 CHIP_ERROR ListBuilder::Init(chip::TLV::TLVWriter * const apWriter, const uint8_t aContextTagToUse)
38 {
39     mpWriter = apWriter;
40     mError   = mpWriter->StartContainer(chip::TLV::ContextTag(aContextTagToUse), chip::TLV::kTLVType_Array, mOuterContainerType);
41     ChipLogFunctError(mError);
42
43     return mError;
44 }
45
46 CHIP_ERROR ListBuilder::Init(chip::TLV::TLVWriter * const apWriter)
47 {
48     mpWriter = apWriter;
49     mError   = mpWriter->StartContainer(chip::TLV::AnonymousTag, chip::TLV::kTLVType_Array, mOuterContainerType);
50     ChipLogFunctError(mError);
51
52     return mError;
53 }
54 }; // namespace app
55 }; // namespace chip