tags:

views:

274

answers:

1

I am reading on AOP now and would like to use (some) AOP ideas and approaches in my code. I don't have any third-party extensions, just MSVS 2005 environment. So, is it possible to benefit from AOP concepts in my day-to-day work without complete refactoring of the existing code (2-year old project x 5 programmers)?

+3  A: 

You can use AspectC++ compiler extension without changing much of you code. Just see AspectC++ and tutorial for it.

serioys sam