Irregularity.h 260 Bytes
Newer Older
Matteo's avatar
update  
Matteo committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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