7#ifndef YARP_OS_NETINT32_H
8#define YARP_OS_NETINT32_H
27#ifdef YARP_LITTLE_ENDIAN
37 std::uint32_t swap(std::uint32_t x)
const;
38 std::int32_t get()
const;
39 void set(std::int32_t v);
44 operator std::int32_t()
const;
45 std::int32_t
operator+(std::int32_t v)
const;
46 std::int32_t
operator-(std::int32_t v)
const;
47 std::int32_t
operator*(std::int32_t v)
const;
48 std::int32_t
operator/(std::int32_t v)
const;
A mini-server for performing network communication in the background.
Vector operator+(const Vector &a, const double &s)
Mathematical operations.
Vector operator-(const Vector &a, const double &s)
Subtraction operator between a vector and a scalar (defined in Math.h).
Vector operator*(double k, const Vector &b)
Scalar-vector product operator (defined in Math.h).
Vector & operator-=(Vector &a, const double &s)
Subtraction operator between a vector and a scalar (defined in Math.h).
Vector & operator+=(Vector &a, const double &s)
Addition operator between a scalar and a vector (defined in Math.h).
Vector & operator/=(Vector &a, const Vector &b)
Vector-vector element-wise division operator (defined in Math.h).
Vector operator/(const Vector &a, const Vector &b)
Vector-vector element-wise division operator (defined in Math.h).
Vector & operator*=(Vector &a, double k)
Vector-scalar product operator (defined in Math.h).
An interface to the operating system, including Port based communication.
std::int32_t NetInt32
Definition of the NetInt32 type.