#pragma once #include #include namespace dchat { class ChatMessage : public Gtk::Grid { public: ChatMessage(const Glib::ustring &username, const Glib::ustring &text); Gtk::Label username; Gtk::Label text; }; }