ivversion.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #ifndef IVVERSION_H
  2. #define IVVERSION_H
  3. #include "ivversion_def.h" //Please use common.pri, If you don't want use ivversion_def.h can comment this line.
  4. #include <iostream>
  5. #ifndef IVVERSION
  6. #define IVVERSION "1.1.0-develop"
  7. #endif
  8. //#include <iostream>
  9. //#include <stdio.h>
  10. //#include <fstream>
  11. //#include <string.h>
  12. //#include <QFile>
  13. //std::string getgitversion()
  14. //{
  15. // std::string strrtn;
  16. // bool bfileok = false;
  17. // char strpath[256];
  18. // char strtem[256];
  19. // char strbase[256];
  20. // snprintf(strbase,256,"./.git/refs/heads/master");
  21. // snprintf(strtem,256,"./.");
  22. // int i;
  23. // for(i=0;i<5;i++)
  24. // {
  25. // strncpy(strpath,strtem,256);
  26. // int j;
  27. // for(j=0;j<i;j++)strncat(strpath,strtem,256);
  28. // strncat(strpath,strbase,256);
  29. // std::ifstream f(strpath);
  30. // if(f.good())
  31. // {
  32. // char strdata[256];
  33. // f.read(strdata,256);
  34. // if(f.gcount()>0)strrtn.append(strdata,f.gcount());
  35. // // std::cout<<"file ok"<<"size is "<<f.gcount()<<std::endl;
  36. // bfileok = true;
  37. // f.close();
  38. // break;
  39. // }
  40. // else
  41. // {
  42. // // std::cout<<" not ok"<<std::endl;
  43. // }
  44. // }
  45. // if(bfileok == false)
  46. // {
  47. // strrtn = VERSION;
  48. // }
  49. // return strrtn;
  50. //}
  51. #define showversion(modulename) do{std::cout<<"ADC IV Version:"<<IVVERSION<<" | Module name: "<<modulename<<" | Build Time: "<<__DATE__<<" "<<__TIME__<<std::endl;}while(0);
  52. //#define showversion(modulename) do{std::cout<<"ADC IV Version:"<<getgitversion()<<" | Module name: "<<modulename<<" | Build Time: "<<__DATE__<<" "<<__TIME__<<std::endl;}while(0);
  53. #endif