Skip to content

Commit

Permalink
enum class -> enum
Browse files Browse the repository at this point in the history
  • Loading branch information
kmvisscher committed Sep 14, 2016
1 parent b274887 commit 98d819d
Show file tree
Hide file tree
Showing 25 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion plot/include/plot/angleSpectrumPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class AngleSpectrumPlot
: public Line2DProperties< AngleSpectrumPlot >
{
public:
enum class Sides
enum Sides
{
Default,
OneSided,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/annotatePlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class AnnotatePlot
{
public:

enum class Type
enum Type
{
FigurePoints,
FigurePixels,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/arrowPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ArrowPlot
{
public:

enum class Shape
enum Shape
{
Full,
Left,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/autoCorrelationPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class AutoCorrelationPlot
{
public:

enum class Detrend
enum Detrend
{
None,
Mean,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/barPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class BarPlot
{
public:

enum class Orientation
enum Orientation
{
Vertical,
Horizontal
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/boxPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class BoxPlot
{
public:

enum class Orientation
enum Orientation
{
Vertical,
Horizontal
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/clusterMapPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ClusterMapPlot
{
public:

enum class Linkage
enum Linkage
{
Single,
Complete,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/countPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class CountPlot
{
public:

enum class Orientation
enum Orientation
{
Vertical,
Horizontal
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/crossCorrelationPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class CrossCorrelationPlot
{
public:

enum class Detrend
enum Detrend
{
None,
Mean,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/factorBarPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class FactorBarPlot
{
public:

enum class Orientation
enum Orientation
{
Vertical,
Horizontal
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/hexBinPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class HexBinPlot
{
public:

enum class BinType
enum BinType
{
Logarithmic,
None
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/histogramPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class HistogramPlot
{
public:

enum class Type
enum Type
{
Bar,
BarStacked,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/jointPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class JointPlot
{
public:

enum class Kind
enum Kind
{
Scatter,
Regression,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/kdePlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class KDEPlot
{
public:

enum class Kernel
enum Kernel
{
Gauss,
Cos,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/logLogPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class LogLogPlot
{
public:

enum class NonPos
enum NonPos
{
Mask,
Clip
Expand Down
4 changes: 2 additions & 2 deletions plot/include/plot/pairPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ class PairPlot
{
public:

enum class Type
enum Type
{
Scatter,
Regression
};

enum class DiagonalType
enum DiagonalType
{
Histogram,
KernelDensity
Expand Down
6 changes: 3 additions & 3 deletions plot/include/plot/plot.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Plot
{
public:

enum class Style
enum Style
{
DarkGrid,
WhiteGrid,
Expand All @@ -50,15 +50,15 @@ class Plot
Ticks
};

enum class Context
enum Context
{
Paper,
Notebook,
Talk,
Poster
};

enum class Location
enum Location
{
Best,
UpperRight,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/pointPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class PointPlot
{
public:

enum class Orientation
enum Orientation
{
Vertical,
Horizontal
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/rugPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class RUGPlot
{
public:

enum class Axis
enum Axis
{
X,
Y
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/semiLogXPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class SemiLogXPlot
{
public:

enum class NonPos
enum NonPos
{
Mask,
Clip
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/semiLogYPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class SemiLogYPlot
{
public:

enum class NonPos
enum NonPos
{
Mask,
Clip
Expand Down
4 changes: 2 additions & 2 deletions plot/include/plot/spyPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ class SpyPlot
{
public:

enum class Origin
enum Origin
{
Lower,
Upper
};

enum class Aspect
enum Aspect
{
Auto,
Equal,
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/stripPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class StripPlot
{
public:

enum class Orientation
enum Orientation
{
Vertical,
Horizontal
Expand Down
2 changes: 1 addition & 1 deletion plot/include/plot/swarmPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class SwarmPlot
{
public:

enum class Orientation
enum Orientation
{
Vertical,
Horizontal
Expand Down
8 changes: 4 additions & 4 deletions plot/include/plot/violinPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,26 +38,26 @@ class ViolinPlot
{
public:

enum class Orientation
enum Orientation
{
Vertical,
Horizontal
};

enum class KernelBandwidth
enum KernelBandwidth
{
Scott,
Silverman
};

enum class Scale
enum Scale
{
Area,
Count,
Width
};

enum class Interior
enum Interior
{
Box,
Quartile,
Expand Down

0 comments on commit 98d819d

Please sign in to comment.