Is it possible to use (some) AOP concepts in existing C ++ programs without full refactoring?

I am reading AOP right now and would like to use (some) AOP ideas and approaches in my code. I do not have third-party extensions, only the MSVS 2005 environment. So, is it possible to use AOP concepts in my daily work without completely reorganizing the existing code (2-year project x 5 programmers)?

+4
source share
1 answer

You can use the AspectC ++ compiler extension without changing the code. Just check out the AspectC ++ and tutorial for this.

+4
source

All Articles