FACT++  1.0
Description::Description ( const std::string &  n,
const std::string &  c,
const std::string &  u = "" 
)

Construct a Description object

Parameters
nName of the Description, e.g. "temp"
cDescriptive text of the Description, e.g. "Temperature of the moon"
uUnit of the Description, e.g. "K"

Definition at line 63 of file Description.cc.

64  : name(Trim(n)), comment(Trim(c)), unit(Trim(u))
65 {
66 }
std::string unit
Definition: Description.h:11
std::string name
Definition: Description.h:9
std::string comment
Definition: Description.h:10
std::string Trim(const std::string &str)
Definition: tools.cc:68