#include <nlohmann/json.hpp> using json = nlohmann::json; #ifndef IRREGULARITY_H #define IRREGULARITY_H class Irregularity { public: Irregularity(); static Irregularity fromJSON(json irregularityJSON); json toJSON(); }; #endif // IRREGULARITY_H