|
From: Matthias S. <mat...@us...> - 2007-04-03 21:39:49
|
Update of /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20241/systems Modified Files: abstract.hpp Log Message: SI compliant symbols for fundamental units in abstract unit system Index: abstract.hpp =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/abstract.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- abstract.hpp 3 Apr 2007 17:12:25 -0000 1.4 +++ abstract.hpp 3 Apr 2007 21:39:48 -0000 1.5 @@ -84,29 +84,29 @@ template<> struct base_unit_info<current_tag,abstract::system_tag> { - static std::string name() { return "[Current]"; } - static std::string symbol() { return "[C]"; } + static std::string name() { return "[Electric Current]"; } + static std::string symbol() { return "[I]"; } }; template<> struct base_unit_info<temperature_tag,abstract::system_tag> { static std::string name() { return "[Temperature]"; } - static std::string symbol() { return "[K]"; } + static std::string symbol() { return "[Theta]"; } }; template<> struct base_unit_info<amount_tag,abstract::system_tag> { static std::string name() { return "[Amount]"; } - static std::string symbol() { return "[A]"; } + static std::string symbol() { return "[N]"; } }; template<> struct base_unit_info<luminous_intensity_tag,abstract::system_tag> { static std::string name() { return "[Luminous Intensity]"; } - static std::string symbol() { return "[I]"; } + static std::string symbol() { return "[J]"; } }; template<> |