File: to_xml.h

package info (click to toggle)
dlib 19.24.6%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 292,728 kB
  • sloc: cpp: 327,411; xml: 26,686; python: 1,631; sh: 290; java: 229; makefile: 179; javascript: 73; perl: 18
file content (22 lines) | stat: -rw-r--r-- 640 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef DLIB_HTMLIFY_TO_XmL_H__
#define DLIB_HTMLIFY_TO_XmL_H__

#include "dlib/cmd_line_parser.h"
#include <string>

void generate_xml_markup(
    const dlib::cmd_line_parser<char>::check_1a_c& parser, 
    const std::string& filter, 
    const unsigned long search_depth,
    const unsigned long expand_tabs 
);
/*!
    ensures
        - reads all the files indicated by the parser arguments and converts them
          to XML.  The output will be stored in the output.xml file.
        - if (expand_tabs != 0) then
            - tabs will be replaced with expand_tabs spaces inside comment blocks
!*/

#endif // DLIB_HTMLIFY_TO_XmL_H__