C ++ Type Information from VS2008

Is it possible to force Visual Studio to output any type information when compiling C ++? GCC has GCC-XML, and I was wondering something similar to VS2008.

thanks

BEN

+3
source share
1 answer

There are a number of solutions to this problem:

  • there is of course XML documentation.
  • You can include the written source output in the section "C / C ++" → "Output Files", "Expand Attributed Source", as well as various levels of the Assembler Output output data.

    Unfortunately, these methods are rather laborious and unstructured (for example, manual cracking of syntax).

  • RTTI C/++. , #, .
  • Mangling , RTTI . ++ , ; , mangling , API- SDK Windows Win32 APi, "un " . , .
  • PDB, DIA SDK PDB, . , PDB, (public vs. private), .
  • , Phoenix, MSR, / .
  • CodeDom, MSVC SDK (DSL) .
  • MSVC DSL API, -, , , . , , API, BASIC, , VB ( , VB), .
  • ...;), 9.
+2

Source: https://habr.com/ru/post/1707370/


All Articles