0

In Visual C# I can rename an entity at its definition, and with two clicks all references to that entity get updated. How do I do this in Visual C++? If it's not supported, is there another IDE that supports it?

Note that in the C++ case I also want automatic header/implementation synchronization, so I hardly ever need to do duplicate work.

Stefan Monov
  • 11,332
  • 10
  • 63
  • 120

2 Answers2

7

VS won't do it alone, but with an add-in like Visual Assist X (Whole Tomato Software) it does quite nicely.

Jerry Coffin
  • 476,176
  • 80
  • 629
  • 1,111
1

There is Refactor for Visual C++ 2005 (http://msdn.microsoft.com/en-us/visualc/bb737896.aspx).

Oh, there is similar topic on StackOverflow: Is there a working C++ refactoring tool? - check it!

Community
  • 1
  • 1
matekm
  • 5,990
  • 3
  • 26
  • 31