Effective implementation of algorithms (Master Thesis)
Effective and error-free implementation of algorithms
src/utils/si_units/si_units.h
Go to the documentation of this file.
00001 #ifndef H_SI_UNITS
00002 #define H_SI_UNITS
00003 
00004 const long long Ki = 1000;
00005 const long long Mi = 1000 * Ki;
00006 const long long Gi = 1000 * Mi;
00007 
00008 
00009 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines