Yarik
Yarik

Reputation: 1202

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

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)?

Upvotes: 4

Views: 705

Answers (1)

serioys sam
serioys sam

Reputation: 2051

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

Upvotes: 4

Related Questions