1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#pragma once #include <string> struct ListElement { ListElement(const std::string& channel, const std::string& nb_users, const std::string& topic): channel(channel), nb_users(nb_users), topic(topic){} std::string channel; std::string nb_users; std::string topic; };