21 #ifndef EVALUATION_H_INCLUDED 22 #define EVALUATION_H_INCLUDED 30 typedef std::bitset<6> mode;
32 constexpr
static mode base (0);
33 const static mode literal (mode(1) | base);
34 const static mode numerical (mode(2) | base);
35 const static mode indicial (mode(4) | base);
36 const static mode abbreviation (mode(8) | base);
37 const static mode all (base
47 mode
const& defined_mode);
bool isContained(mode const &user_mode, mode const &defined_mode)
Tells if the defined mode is contained in the user_mode.
Definition: evaluation.cpp:21
Namespace for csl library.
Definition: abreviation.h:34