ReCodEx - Task Broker
ReCodEx is complex programmer testing solution, primary targeted to technical universities. It's highly customizable and based on modern technologies.
message_container.h
1 #ifndef RECODEX_BROKER_MESSAGE_CONTAINER_H
2 #define RECODEX_BROKER_MESSAGE_CONTAINER_H
3 
4 #include <string>
5 #include <vector>
6 
13  std::string key;
14 
16  std::string identity = "";
17 
19  std::vector<std::string> data;
20 
25 
32  message_container(const std::string &key, const std::string &identity, const std::vector<std::string> &data);
33 
39  bool operator==(const message_container &other) const;
40 };
41 
42 #endif // RECODEX_BROKER_MESSAGE_CONTAINER_H
bool operator==(const message_container &other) const
std::vector< std::string > data