cxx_config_ini.cc (10458:64809024b924) cxx_config_ini.cc (11800:54436a1784dc)
1/*
2 * Copyright (c) 2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 25 unchanged lines hidden (view full) ---

34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Andrew Bardsley
38 */
39
40#include "sim/cxx_config_ini.hh"
41
1/*
2 * Copyright (c) 2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 25 unchanged lines hidden (view full) ---

34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Andrew Bardsley
38 */
39
40#include "sim/cxx_config_ini.hh"
41
42#include "base/str.hh"
43
42bool
43CxxIniFile::getParam(const std::string &object_name,
44 const std::string &param_name,
45 std::string &value) const
46{
47 return iniFile.find(object_name, param_name, value);
48}
49

--- 55 unchanged lines hidden ---
44bool
45CxxIniFile::getParam(const std::string &object_name,
46 const std::string &param_name,
47 std::string &value) const
48{
49 return iniFile.find(object_name, param_name, value);
50}
51

--- 55 unchanged lines hidden ---