0

Can we refactor our class if its fully written in .h file into .h + .cpp using Visual Assist X? (I mean having all functions written in .h file)

skaffman
  • 398,947
  • 96
  • 818
  • 769
Rella
  • 65,003
  • 109
  • 363
  • 636
  • I don't know about VAX, but it would be easy do with Eclipse plug-in (there's a module for rewriting the syntax tree, which would do all the work). – Kos Dec 25 '10 at 17:55

1 Answers1

2

The VA feature Move Implementation to Source File can help you move methods from a class header to the class source file.

sean e
  • 11,792
  • 3
  • 44
  • 56