![]() |
IRSOL
C++ code implementing socket server for interacting with Baumer camera.
|
#include "irsol/irsol.hpp"Go to the source code of this file.
Macros | |
| #define | PROGRAM_NAME "message-protocols-demo" |
Functions | |
| const std::string | getProgramName () |
| Returns the program name for logging. | |
| void | tryParse (const std::string &raw) |
| Tries to parse a message string and logs the result or error. | |
| void | demoParsing () |
| Demonstrates parsing raw protocol strings into structured InMessages. | |
| void | demoSerializing () |
| Demonstrates serializing protocol OutMessages into SerializedMessages. | |
| void | demoProtocol () |
| Demonstrates protocol message creation and serialization. | |
| int | main () |
| Main entry point for the feature demo application. | |
| #define PROGRAM_NAME "message-protocols-demo" |
| void demoParsing | ( | ) |
Demonstrates parsing raw protocol strings into structured InMessages.
Definition at line 31 of file main.cpp.
| void demoProtocol | ( | ) |
Demonstrates protocol message creation and serialization.
Definition at line 100 of file main.cpp.
| void demoSerializing | ( | ) |
Demonstrates serializing protocol OutMessages into SerializedMessages.
Definition at line 59 of file main.cpp.
| const std::string getProgramName | ( | ) |
| int main | ( | ) |
Main entry point for the feature demo application.
Definition at line 108 of file main.cpp.
| void tryParse | ( | const std::string & | raw | ) |
Tries to parse a message string and logs the result or error.
Definition at line 19 of file main.cpp.