Digitalisierte Elektroverteilung zur permanenten Verbraucherüberwachung
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
12345678910111213141516 |
- #pragma once
- #include "net_server_client.h"
-
-
- class NetClient : public net::ClientInterface<net::MessageTypes>
- {
- public:
- void RequestLogFile()
- {
- net::Message<net::MessageTypes> msg;
- msg.header.id = net::MessageTypes::ServerLog;
-
- Send(msg);
- }
- };
-
|