What C++ frameworks provide a complete skeleton, in the fashion of Ruby on Rails?
I think Poco C++ does it, are there other options?
What C++ frameworks provide a complete skeleton, in the fashion of Ruby on Rails?
I think Poco C++ does it, are there other options?
It's hard to provide a skeleton for client applications, because there is no common functionality like in the case of web applications. Qt does a pretty good job at providing what you might need in a new application though (yes, it does much more than just GUI).
Besides POCO and Qt, there are only two other mature cross-platform application frameworks suitable for C++ that come to my mind:
WxWidgets and gtk+ (or its C++ binding gtkmm).