IRSOL
C++ code implementing socket server for interacting with Baumer camera.
inquiry.hpp
Go to the documentation of this file.
1
12#pragma once
13
15#include "irsol/types.hpp"
16
17#include <string>
18
19namespace irsol {
20namespace protocol {
21
31struct Inquiry
32{
38 Inquiry(const std::string& identifier);
39
41 std::string identifier;
42
47 std::string toString() const;
48};
49
50} // namespace protocol
51} // namespace irsol
Represents a value inquiry in the protocol.
Definition inquiry.hpp:32
std::string toString() const
Converts the inquiry to a human-readable string.
Definition inquiry.cpp:13
std::string identifier
The identifier whose value is being requested.
Definition inquiry.hpp:41
Core type definitions for networking, time handling, and protocol values used throughout the irsol li...
Definitions and utilities for incoming and outgoing protocol messages.