moved exports into backend files
This commit is contained in:
parent
73944fc9bf
commit
d447c5dc25
@ -34,11 +34,6 @@ export
|
||||
savepng,
|
||||
|
||||
backends,
|
||||
qwt!,
|
||||
gadfly!,
|
||||
unicodeplots!,
|
||||
pyplot!,
|
||||
immerse!,
|
||||
|
||||
supportedArgs,
|
||||
supportedAxes,
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
immutable GadflyPackage <: PlottingPackage end
|
||||
|
||||
export gadfly!
|
||||
gadfly!() = plotter!(:gadfly)
|
||||
|
||||
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
immutable ImmersePackage <: PlottingPackage end
|
||||
|
||||
export immerse!
|
||||
immerse!() = plotter!(:immerse)
|
||||
|
||||
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
immutable PyPlotPackage <: PlottingPackage end
|
||||
|
||||
export pyplot!
|
||||
pyplot!() = plotter!(:pyplot)
|
||||
|
||||
# -------------------------------
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
immutable QwtPackage <: PlottingPackage end
|
||||
|
||||
export qwt!
|
||||
qwt!() = plotter!(:qwt)
|
||||
|
||||
# -------------------------------
|
||||
|
||||
@ -5,6 +5,7 @@
|
||||
|
||||
immutable [PkgName]Package <: PlottingPackage end
|
||||
|
||||
export [pkgname]!
|
||||
[pkgname]!() = plotter!(:[pkgname])
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
immutable UnicodePlotsPackage <: PlottingPackage end
|
||||
|
||||
export unicodeplots!
|
||||
unicodeplots!() = plotter!(:unicodeplots)
|
||||
|
||||
# -------------------------------
|
||||
|
||||
@ -5,6 +5,7 @@
|
||||
|
||||
immutable WinstonPackage <: PlottingPackage end
|
||||
|
||||
export winston!
|
||||
winston!() = plotter!(:winston)
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user