Is there an open source MVP framework for C++?
- by morpheous
I am looking for a lightweight set of C++ classes that implement/show how to use the MVP design pattern, so that I can refactor some legacy code I am working on.
A library/framework would be nice to get me started. A quick google search seems to bring up only C# examples - is anyone aware of any C++ ones out there?
[Edit]
I am particularly interested in a Passive viewer, as I want to completely decouple the view from the model.