Isis Developer Reference
XmlToJson.h
Go to the documentation of this file.
1#ifndef XmlToJson_h
2#define XmlToJson_h
3
9/* SPDX-License-Identifier: CC0-1.0 */
10#include "QDomElement"
11#include "QString"
12
13#include <nlohmann/json.hpp>
14
15namespace Isis {
16 nlohmann::json xmlToJson(QString xmlFile);
17 nlohmann::json xmlToJson(QDomDocument& doc);
18}
19
20#endif
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16
json xmlToJson(QString xmlFile)
Converts an XML file to a json object.
Definition XmlToJson.cpp:35