blob: 83d96c80946f04e47b2398365d545038cf29e22d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#pragma once
#include <string>
#include <cm/optional>
namespace Json {
class Value;
}
cm::optional<Json::Value> cmParsePlist(std::string const& filename);
|