rohdeschwarz  0.2.0
TCPIP socket library for Rohde & Schwarz instrument control
Variables
helpers.cpp File Reference

rohdeschwarz helper function implementations More...

#include "rohdeschwarz/helpers.hpp"
#include <algorithm>
#include <cctype>
#include <cstddef>
#include <sstream>

Go to the source code of this file.

Variables

const char SINGLE_QUOTE = '\''
 
const char DOUBLE_QUOTE = '\"'
 
auto not_a_space
 
auto is_quote_char
 

Detailed Description

rohdeschwarz helper function implementations

Definition in file helpers.cpp.

Variable Documentation

◆ DOUBLE_QUOTE

const char DOUBLE_QUOTE = '\"'

Definition at line 19 of file helpers.cpp.

◆ is_quote_char

auto is_quote_char
Initial value:
= [](char character)
{
return character == SINGLE_QUOTE || character == DOUBLE_QUOTE;
}
const char DOUBLE_QUOTE
Definition: helpers.cpp:19
const char SINGLE_QUOTE
Definition: helpers.cpp:18

Definition at line 30 of file helpers.cpp.

◆ not_a_space

auto not_a_space
Initial value:
= [](unsigned char ch)
{
return !std::isspace(ch);
}

Definition at line 24 of file helpers.cpp.

◆ SINGLE_QUOTE

const char SINGLE_QUOTE = '\''

Definition at line 18 of file helpers.cpp.