mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss.git
synced 2025-04-07 13:11:02 +00:00
17 lines
325 B
C++
17 lines
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;
|
||
|
};
|