Refactoring FAT client legacy application

Posted by Paul on Stack Overflow See other posts from Stack Overflow or by Paul
Published on 2010-05-05T17:14:14Z Indexed on 2010/05/05 17:18 UTC
Read the original article Hit count: 125

Filed under:
|
|
|
|

I am working on a fat client legacy C++ application which has a lot of business logic mixed in with the presentation side of things. I want to clean things out and refactor the code out completely, so there is a clear seperation of concerns. I am looking at MVC or some other suitable design pattern in order to achieve this.

I would like to get recommendations from people who have walked this road before -

Do I use MVP or MVC (or another pattern)?

What is/are the best practices for undertaking something like this (i.e. useful steps/checks) ?

© Stack Overflow or respective owner

Related posts about c++

Related posts about mvc