File four_int_values.hpp

o *

License:

License BSD-3-Clause

Defines a messages to be sent throw the shared memory
Author

Vincent Berenz

Copyright

Copyright (c) 2019, New York University and Max Planck Gesellschaft.

Date

2019-05-22

namespace shared_memory

All templated types in this namespaces are elementary types: int, double, float, char*, …

class Four_int_values

Example of an instance that can be serialized.

Notice: There is a default constructor There is a serialize function It is friend to private_serialization

Public Functions

Four_int_values()
Four_int_values(int a, int b, int c, int d)
int get_id() const
void set_id(int id)
template<class Archive>
inline void serialize(Archive &archive)
bool equal(const Four_int_values &other) const
bool same(const Four_int_values &other) const
void print() const

Private Members

friend private_serialization
std::vector<int> values_
int id_

Private Static Functions

static int next_id()