summaryrefslogtreecommitdiff
blob: 882163a3a7f576c1dc1aa9b0bf0e0fefbd40df07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?> 
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
  <Type Name="STRING">
    <DisplayString>{(char*)data_+sizeof(int)*2,s8}</DisplayString>
  </Type>

  <Type Name="GenericVector&lt;*&gt;">
    <DisplayString>{{size={size_used_}}}</DisplayString>
    <Expand>
      <Item Name="[size]" ExcludeView="simple">size_used_</Item>
      <Item Name="[capacity]" ExcludeView="simple">size_reserved_</Item>
      <ArrayItems>
        <Size>size_used_</Size>
        <ValuePointer>data_</ValuePointer>
      </ArrayItems>
    </Expand>
  </Type>
  
  <Type Name="tesseract::IntParam">
    <DisplayString>{value_}</DisplayString>
  </Type>
  <Type Name="tesseract::BoolParam">
    <DisplayString>{value_}</DisplayString>
  </Type>

  <Type Name="tesseract::StringParam">
    <DisplayString>{value_}</DisplayString>
  </Type>

  <Type Name="tesseract::DoubleParam">
    <DisplayString>{value_}</DisplayString>
  </Type>
  
</AutoVisualizer>