Update of /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/cgs
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16523/boost/units/systems/cgs
Modified Files:
base.hpp
Log Message:
remove non-CGS base units from CGS system
Index: base.hpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/cgs/base.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- base.hpp 29 Mar 2007 00:30:17 -0000 1.2
+++ base.hpp 29 Mar 2007 17:21:04 -0000 1.3
@@ -76,47 +76,47 @@
static std::string symbol() { return "s"; }
};
-template<>
-struct base_unit_info<current_tag,CGS::system_tag>
-{
- static std::string name() { return "biot"; }
- static std::string symbol() { return "Bi"; }
-};
-
-template<>
-struct base_unit_info<temperature_tag,CGS::system_tag>
-{
- static std::string name() { return "kelvin"; }
- static std::string symbol() { return "K"; }
-};
-
-template<>
-struct base_unit_info<amount_tag,CGS::system_tag>
-{
- static std::string name() { return "mole"; }
- static std::string symbol() { return "mol"; }
-};
-
-template<>
-struct base_unit_info<intensity_tag,CGS::system_tag>
-{
- static std::string name() { return "candela"; }
- static std::string symbol() { return "cd"; }
-};
-
-template<>
-struct base_unit_info<angle_tag,CGS::system_tag>
-{
- static std::string name() { return "radian"; }
- static std::string symbol() { return "rd"; }
-};
-
-template<>
-struct base_unit_info<solid_angle_tag,CGS::system_tag>
-{
- static std::string name() { return "steradian"; }
- static std::string symbol() { return "sr"; }
-};
+//template<>
+//struct base_unit_info<current_tag,CGS::system_tag>
+//{
+// static std::string name() { return "biot"; }
+// static std::string symbol() { return "Bi"; }
+//};
+//
+//template<>
+//struct base_unit_info<temperature_tag,CGS::system_tag>
+//{
+// static std::string name() { return "kelvin"; }
+// static std::string symbol() { return "K"; }
+//};
+//
+//template<>
+//struct base_unit_info<amount_tag,CGS::system_tag>
+//{
+// static std::string name() { return "mole"; }
+// static std::string symbol() { return "mol"; }
+//};
+//
+//template<>
+//struct base_unit_info<intensity_tag,CGS::system_tag>
+//{
+// static std::string name() { return "candela"; }
+// static std::string symbol() { return "cd"; }
+//};
+//
+//template<>
+//struct base_unit_info<angle_tag,CGS::system_tag>
+//{
+// static std::string name() { return "radian"; }
+// static std::string symbol() { return "rd"; }
+//};
+//
+//template<>
+//struct base_unit_info<solid_angle_tag,CGS::system_tag>
+//{
+// static std::string name() { return "steradian"; }
+// static std::string symbol() { return "sr"; }
+//};
} // namespace units
|