Skip to content

Instantly share code, notes, and snippets.

View tallica's full-sized avatar

Michał Lipski tallica

  • Brandwatch
  • Poland
View GitHub Profile
@tallica
tallica / message.hpp
Created November 7, 2017 23:52 — forked from mashiro/message.hpp
zeromq + msgpack
#include <string>
#include <ctime>
#include <msgpack.hpp>
struct message
{
std::string tag;
std::time_t time;
std::string text;
MSGPACK_DEFINE(tag, time, text);