mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss.git
synced 2025-04-06 03:26:24 +02:00
17 lines
No EOL
325 B
C++
17 lines
No EOL
325 B
C++
#include "rapidjson/document.h"
|
|
#include "rapidjson/filereadstream.h"
|
|
#include <cstdio>
|
|
#include <string>
|
|
|
|
#define INPUTS_FILE "inputs.json"
|
|
|
|
using namespace rapidjson;
|
|
|
|
class Inputs {
|
|
Document d;
|
|
std::string node_name;
|
|
public:
|
|
Inputs(std::string node_name);
|
|
double wake_duration;
|
|
double wake_interval;
|
|
}; |