Changes between Version 11 and Version 12 of DebuggerVisualizers


Ignore:
Timestamp:
Feb 14, 2008, 12:01:31 PM (15 years ago)
Author:
fkonvick
Comment:

Added svn references, list of supported classes

Legend:

Unmodified
Added
Removed
Modified
  • DebuggerVisualizers

    v11 v12  
    4949----
    5050
    51 == Visual Studio 2005 ==
    52 
    53 [http://msdn2.microsoft.com/en-us/vstudio/default.aspx Microsoft Visual Studio 2005] is the first of the Visual Studio versions to support  debugger visualizers usable for template classes. For CLR languages, such as C#, the possibilities are even more powerful, and documented. Native C++ debugger visualizers are not documented, though it was claimed by some people from Microsoft that some docs are coming - so if you know of some, please [wiki:DebuggerVisualizers#Activedevelopers let us know]!
    54 
    55 === Native C++ Debugger Visualizers for MSVS 2005 ===
     51== Visual Studio 2005 / 2008 ==
     52
     53[http://msdn2.microsoft.com/en-us/vstudio/default.aspx Microsoft Visual Studio 2005] is the first of the Visual Studio versions to support debugger visualizers usable for template classes. For CLR languages, such as C#, the possibilities are even more powerful, and documented. Native C++ debugger visualizers are not documented, though it was claimed by some people from Microsoft that some docs are coming - so if you know of some, please [wiki:DebuggerVisualizers#Activedevelopers let us know]!
     54
     55=== Native C++ Debugger Visualizers for MSVS 2005 / 2008 ===
    5656
    5757The formatting rules are stored in the {{{autoexp.dat}}} text file (the {{{[Visualizer]}}} section)
    5858which can be found at
    5959{{{
    60 Microsoft Visual Studio 8\Common7\Packages\Debugger\autoexp.dat
     60%VSINSTALLDIR%\Common7\Packages\Debugger\autoexp.dat
    6161}}}
    6262
     
    6565==== Existing visualizers ====
    6666
    67 Visualizers for {{{boost::multi_index_container}}} stored at [http://boost-consulting.com/vault/index.php?directory=Debug/Visualizers_MSVC_8 Boost Vault/Debug/Visualizers_MSVC_8].
    68 
    69 Other existing visualizers will be added shortly. If you're lacking a visualizer for your favorite type,
    70 [wiki:DebuggerVisualizers#Activedevelopers let us know] or write one yourself - it's easy!
     67All visualizers are available in the svn at [https://svn.boost.org/svn/boost/sandbox/boost_docs/subprojects/DebuggerVisualizers].
     68Currently, we support the following Boost types:
     69 * boost::interprocess::offset_ptr
     70 * boost::multi_index_container
     71 * boost::array, ptr_array, ptr_deque, ptr_list, ptr_map, ptr_multimap, ptr_set, ptr_multiset, ptr_vector
     72
     73If you're lacking a visualizer for your favorite type, [wiki:DebuggerVisualizers#Activedevelopers let us know] or write one yourself - it's easy!
     74
     75Note that some older files also exist in the Boost Vault at [http://boost-consulting.com/vault/index.php?directory=Debug/Visualizers_MSVC_8 Boost Vault/Debug/Visualizers_MSVC_8], which you can probably use to upload new visualizers if you create some.
    7176
    7277=== HOWTO ===