forked from tesseract-ocr/tesseract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tesseract.natvis
34 lines (29 loc) · 1002 Bytes
/
tesseract.natvis
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="https://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="STRING">
<DisplayString>{(char*)data_+sizeof(int)*2,s8}</DisplayString>
</Type>
<Type Name="GenericVector<*>">
<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>