File failed to load: https://isis.astrogeology.usgs.gov/dev/Object/assets/jax/output/NativeMML/config.js
Isis Developer Reference
FitsToJson.h
Go to the documentation of this file.
1#ifndef FitsToJson_h
2#define FitsToJson_h
3
8
9/* SPDX-License-Identifier: CC0-1.0 */
10#include "FileName.h"
11
12#include <nlohmann/json.hpp>
13#include <fstream>
14
15namespace Isis {
16 nlohmann::json fitsToJson(FileName fitsFile);
17 nlohmann::json fitsToJson(std::ifstream &fileStream);
18}
19
20#endif
File name manipulation and expansion.
Definition FileName.h:100
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16
json fitsToJson(std::ifstream &fileStream)
Convert the contents of a stream to a JSON object.
Definition FitsToJson.cpp:30