1 /**Convenience module that simply publicly imports everything else.
2  *
3  * License:
4  *
5  * The author believes this module is not original enough to be
6  * copyrightable.  Therefore, no license is necessary.
7  */
8 
9 module plot2kill.all;
10 
11 public import plot2kill.figure, plot2kill.subplot, plot2kill.guiagnosticbase,
12     plot2kill.plot, plot2kill.hierarchical;
13 
14 version(dfl) {
15     public import plot2kill.dflwrapper;
16 } else {
17     public import plot2kill.gtkwrapper;
18 }
19