Remove unused directories and files in video_in_hal
[staging/basesystem.git] / service / native / framework_unified / client / NS_XMLConfigeParser / library / src / ns_xmlparser_attributes.cpp
1 /*
2  * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 ////////////////////////////////////////////////////////////////////////////////////////////////////
18 /// \ingroup  tag_NS_XmlParser
19 /// \brief    This file contains implementation of CXmlAttr class.
20 ///
21 ////////////////////////////////////////////////////////////////////////////////////////////////////
22
23 ////////////////////////////////////////////////////////////////////////////////////////////////////
24 // Include Files
25 ////////////////////////////////////////////////////////////////////////////////////////////////////
26 #include <native_service/ns_xmlparser_if.h>
27 #include <string>
28 #include "ns_xmlconfig_parser_frameworkunifiedlog.h"
29
30 ////////////////////////////////////////////////////////////////////////////////////////////////
31 /// CXmlAttr
32 /// Constructor of CXmlAttr class
33 ////////////////////////////////////////////////////////////////////////////////////////////////
34 CXmlAttr::CXmlAttr(): m_cKey(""), m_cValue("") {
35   FRAMEWORKUNIFIEDLOG(ZONE_FUNC, __FUNCTION__, "+");
36   FRAMEWORKUNIFIEDLOG(ZONE_FUNC, __FUNCTION__, "-");
37 }
38
39 ////////////////////////////////////////////////////////////////////////////////////////////////
40 /// CXmlAttr
41 /// Parameterized constructor of CXmlAttr class
42 ////////////////////////////////////////////////////////////////////////////////////////////////
43 CXmlAttr::CXmlAttr(std::string f_cKey, std::string f_cValue): m_cKey(f_cKey), m_cValue(f_cValue) {
44   FRAMEWORKUNIFIEDLOG(ZONE_FUNC, __FUNCTION__, "+");
45   FRAMEWORKUNIFIEDLOG(ZONE_FUNC, __FUNCTION__, "-");
46 }
47
48 ////////////////////////////////////////////////////////////////////////////////////////////////
49 /// ~CXmlAttr
50 /// Destructor of CXmlAttr class
51 ////////////////////////////////////////////////////////////////////////////////////////////////
52 CXmlAttr::~CXmlAttr() {
53   FRAMEWORKUNIFIEDLOG(ZONE_FUNC, __FUNCTION__, "+");
54   FRAMEWORKUNIFIEDLOG(ZONE_FUNC, __FUNCTION__, "-");
55 }