IRSOL
C++ code implementing socket server for interacting with Baumer camera.
inquiry_image_size.hpp File Reference

Declaration of handlers for inquiring camera image size and offset parameters. More...

#include "irsol/macros.hpp"
#include "irsol/server/app.hpp"
#include "irsol/server/handlers/base.hpp"
#include <string_view>

Go to the source code of this file.

Classes

struct  irsol::server::handlers::internal::InquiryCameraImageAttributeLeft
 Tag type for the camera image left offset parameter ("OffsetX"). More...
 
struct  irsol::server::handlers::internal::InquiryCameraImageAttributeWidth
 Tag type for the camera image width parameter ("Width"). More...
 
struct  irsol::server::handlers::internal::InquiryCameraImageAttributeTop
 Tag type for the camera image top offset parameter ("OffsetY"). More...
 
struct  irsol::server::handlers::internal::InquiryCameraImageAttributeHeight
 Tag type for the camera image height parameter ("Height"). More...
 
class  irsol::server::handlers::internal::InquiryImgHandlerBase< InquiryCameraImageAttribute >
 Base handler template for inquiring a camera image region parameter. More...
 

Namespaces

namespace  irsol
 
namespace  irsol::server
 Core server features. TOBE DEFINED FURTHER.
 
namespace  irsol::server::handlers
 Contains all logic for dispatching and implementing protocol message handlers.
 
namespace  irsol::server::handlers::internal
 

Typedefs

using irsol::server::handlers::InquiryImgLeftHandler = internal::InquiryImgHandlerBase< internal::InquiryCameraImageAttributeLeft >
 Handler for inquiring the left offset ("OffsetX") of the camera image.
 
using irsol::server::handlers::InquiryImgTopHandler = internal::InquiryImgHandlerBase< internal::InquiryCameraImageAttributeTop >
 Handler for inquiring the top offset ("OffsetY") of the camera image.
 
using irsol::server::handlers::InquiryImgWidthHandler = internal::InquiryImgHandlerBase< internal::InquiryCameraImageAttributeWidth >
 Handler for inquiring the width ("Width") of the camera image.
 
using irsol::server::handlers::InquiryImgHeightHandler = internal::InquiryImgHandlerBase< internal::InquiryCameraImageAttributeHeight >
 Handler for inquiring the height ("Height") of the camera image.
 

Detailed Description

Declaration of handlers for inquiring camera image size and offset parameters.

Defines handler templates and type aliases for inquiring camera image region parameters (OffsetX, OffsetY, Width, Height) via inquiry messages.

Definition in file inquiry_image_size.hpp.