#pragma once #include "types.hpp" #include #include namespace dchat { class User; class ChatMessage : public Gtk::Grid { public: ChatMessage(const Glib::ustring &username, const Glib::ustring &text, uint32_t timestampSeconds, const User *user); Gtk::Label username; Gtk::Label text; uint32_t timestampSeconds; const User *user; }; }