1 /**
2    This module expands each header encountered in the original input file.
3    It usually delegates to dstep but not always. Since dstep has a different
4    goal, which is to produce human-readable D files from a header, we can't
5    just call into it.
6 
7    The translate function here will handle the cases it knows how to deal with,
8    otherwise it asks dstep to it for us.
9  */
10 
11 module dpp.cursor;
12 
13 public import dpp.cursor.aggregate;
14 public import dpp.cursor.function_;
15 public import dpp.cursor.typedef_;
16 public import dpp.cursor.macro_;
17 public import dpp.cursor.enum_;
18 public import dpp.cursor.variable;