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