9#ifndef YARP_LITTLE_ENDIAN
15std::uint32_t NetInt32::swap(std::uint32_t x)
const
17 return (x >> 24) | ((x >> 8) & 0xff00) | ((x << 8) & 0xff0000) | (x << 24);
20std::int32_t NetInt32::get()
const
25void NetInt32::set(std::int32_t v)
27 raw_value = (std::int32_t)swap((std::uint32_t)v);
34NetInt32::NetInt32(std::int32_t val)
39NetInt32::operator std::int32_t()
const
44std::int32_t NetInt32::operator+(std::int32_t v)
const
49std::int32_t NetInt32::operator-(std::int32_t v)
const
54std::int32_t NetInt32::operator*(std::int32_t v)
const
59std::int32_t NetInt32::operator/(std::int32_t v)
const
64void NetInt32::operator+=(std::int32_t v)
69void NetInt32::operator-=(std::int32_t v)
74void NetInt32::operator*=(std::int32_t v)
79void NetInt32::operator/=(std::int32_t v)
84void NetInt32::operator++(
int)
89void NetInt32::operator--(
int)
A mini-server for performing network communication in the background.
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.