Prev | Next |
Synchronize Existing Sections
When an existing section in the source code differs from the result generated by the corresponding template, that section is replaced.
Consider, for example, this C++ Class declaration:
(asm) class A: public B
Now assume that you add an inheritance relationship from Class A to Class C; the entire Class declaration would be replaced with something resembling this:
(asm) class A: public B, public C