1 // 2 // C++ Interface: global 3 // 4 // Description: 5 // 6 // 7 // Author: Daniel Faust <hessijames@gmail.com>, (C) 2008 8 // 9 // Copyright: See COPYING file that comes with this distribution 10 // 11 // 12 #ifndef GLOBAL_H 13 #define GLOBAL_H 14 15 #include <QString> 16 17 #define SOUNDKONVERTER_VERSION_NUMBER 1006 18 #define SOUNDKONVERTER_VERSION_STRING "3.0.1" 19 20 /** 21 @author Daniel Faust <hessijames@gmail.com> 22 */ 23 class Global 24 { 25 public: 26 Global(); 27 ~Global(); 28 29 static QString prettyNumber( double num, QString unit, short digits = 3 ); 30 31 }; 32 33 #endif 34