(All this In perspective of implementation of own TreeModel, not usage of existing one)
How do i make any use of Gtk::TreeModelColumn in C++ implementation of own TreeModel?
As far i understood, it serves the purpose of uniquely identifying types of columns, but how do i use it in this way in C++ domain?
Is there a way to somehow convert arbitrary GType (which is underlying gtk object inside of TreeModelColumn) to C++ type, so i be able to cast to it?
And if not - why it exists in gtkmm? What it's real purpose there?