7#ifndef YARP_OS_NETINT64_H
8#define YARP_OS_NETINT64_H
27#ifdef YARP_LITTLE_ENDIAN
42 std::int64_t raw_value;
43 std::int64_t swap(std::int64_t x)
const;
44 RawNetInt64 get()
const;
45 void set(RawNetInt64 v);
49 NetInt64(RawNetInt64 val);
50 operator RawNetInt64()
const;
51 RawNetInt64
operator+(RawNetInt64 v)
const;
52 RawNetInt64
operator-(RawNetInt64 v)
const;
53 RawNetInt64
operator*(RawNetInt64 v)
const;
54 RawNetInt64
operator/(RawNetInt64 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::int64_t NetInt64
Definition of the NetInt64 type.