moved exports into backend files

This commit is contained in:
Thomas Breloff 2015-09-16 15:11:44 -04:00
parent 73944fc9bf
commit d447c5dc25
8 changed files with 7 additions and 5 deletions

View File

@ -34,11 +34,6 @@ export
savepng,
backends,
qwt!,
gadfly!,
unicodeplots!,
pyplot!,
immerse!,
supportedArgs,
supportedAxes,

View File

@ -3,6 +3,7 @@
immutable GadflyPackage <: PlottingPackage end
export gadfly!
gadfly!() = plotter!(:gadfly)

View File

@ -3,6 +3,7 @@
immutable ImmersePackage <: PlottingPackage end
export immerse!
immerse!() = plotter!(:immerse)

View File

@ -3,6 +3,7 @@
immutable PyPlotPackage <: PlottingPackage end
export pyplot!
pyplot!() = plotter!(:pyplot)
# -------------------------------

View File

@ -3,6 +3,7 @@
immutable QwtPackage <: PlottingPackage end
export qwt!
qwt!() = plotter!(:qwt)
# -------------------------------

View File

@ -5,6 +5,7 @@
immutable [PkgName]Package <: PlottingPackage end
export [pkgname]!
[pkgname]!() = plotter!(:[pkgname])
# ---------------------------------------------------------------------------

View File

@ -3,6 +3,7 @@
immutable UnicodePlotsPackage <: PlottingPackage end
export unicodeplots!
unicodeplots!() = plotter!(:unicodeplots)
# -------------------------------

View File

@ -5,6 +5,7 @@
immutable WinstonPackage <: PlottingPackage end
export winston!
winston!() = plotter!(:winston)
# ---------------------------------------------------------------------------