2022-08-03 17:01:01 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "./profinet/profinet.hpp"
|
|
|
|
|
#include "./interprocess/profinet_shared_data.hpp"
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
class App {
|
|
|
|
|
public:
|
|
|
|
|
bool Init(std::string profinet_config_file);
|
|
|
|
|
void Run();
|
|
|
|
|
private:
|
|
|
|
|
ProfinetSharedData shared_data_;
|
2022-08-04 14:21:05 +03:00
|
|
|
Profinet profinet_;
|
2022-08-03 17:01:01 +03:00
|
|
|
};
|