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.cpp
1 #include "message_container.h"
2 
4 {
5 }
6 
8  const std::string &key, const std::string &identity, const std::vector<std::string> &data)
9  : key(key), identity(identity), data(data)
10 {
11 }
12 
14 {
15  return key == other.key && identity == other.identity && data == other.data;
16 }
bool operator==(const message_container &other) const
std::vector< std::string > data