Blame view

src/ParamOutputImpl/Plot/InstantPlot/plotFunctionElements/Abscisse.cc 216 Bytes
edef04ea   Menouard AZIB   Creating Abscisse...
1
2
3
4
5
6
7
8
9
10
11

#include "Abscisse.hh"
namespace plot
{
    Abscisse::Abscisse(std::string label_, std::string unit_, Abscisse::Abscisse_Type type_)
    {
        label = label_;
        unit = unit_;
        type = type_;
    }
}