diff options
Diffstat (limited to '')
-rw-r--r-- | search/searchdata.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/search/searchdata.js b/search/searchdata.js new file mode 100644 index 0000000..a1efb83 --- /dev/null +++ b/search/searchdata.js @@ -0,0 +1,27 @@ +var indexSectionsWithContent = +{ + 0: "abcdefghilopqrstw", + 1: "bcfhilprs", + 2: "e", + 3: "abcdfghiopqrstw", + 4: "w" +}; + +var indexSectionNames = +{ + 0: "all", + 1: "classes", + 2: "files", + 3: "functions", + 4: "pages" +}; + +var indexSectionLabels = +{ + 0: "All", + 1: "Classes", + 2: "Files", + 3: "Functions", + 4: "Pages" +}; + |