mostatistics.cpp
上传用户:qinfarui
上传日期:2022-08-10
资源大小:362k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
  2. // NOTE: Do not modify the contents of this file.  If this class is regenerated by
  3. //  Microsoft Visual C++, your modifications will be overwritten.
  4. #include "stdafx.h"
  5. #include "mostatistics.h"
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CMoStatistics properties
  8. double CMoStatistics::GetMax()
  9. {
  10. double result;
  11. GetProperty(0x1, VT_R8, (void*)&result);
  12. return result;
  13. }
  14. void CMoStatistics::SetMax(double propVal)
  15. {
  16. SetProperty(0x1, VT_R8, propVal);
  17. }
  18. double CMoStatistics::GetMin()
  19. {
  20. double result;
  21. GetProperty(0x2, VT_R8, (void*)&result);
  22. return result;
  23. }
  24. void CMoStatistics::SetMin(double propVal)
  25. {
  26. SetProperty(0x2, VT_R8, propVal);
  27. }
  28. double CMoStatistics::GetMean()
  29. {
  30. double result;
  31. GetProperty(0x3, VT_R8, (void*)&result);
  32. return result;
  33. }
  34. void CMoStatistics::SetMean(double propVal)
  35. {
  36. SetProperty(0x3, VT_R8, propVal);
  37. }
  38. double CMoStatistics::GetStdDev()
  39. {
  40. double result;
  41. GetProperty(0x4, VT_R8, (void*)&result);
  42. return result;
  43. }
  44. void CMoStatistics::SetStdDev(double propVal)
  45. {
  46. SetProperty(0x4, VT_R8, propVal);
  47. }
  48. double CMoStatistics::GetSum()
  49. {
  50. double result;
  51. GetProperty(0x5, VT_R8, (void*)&result);
  52. return result;
  53. }
  54. void CMoStatistics::SetSum(double propVal)
  55. {
  56. SetProperty(0x5, VT_R8, propVal);
  57. }
  58. long CMoStatistics::GetCount()
  59. {
  60. long result;
  61. GetProperty(0x6, VT_I4, (void*)&result);
  62. return result;
  63. }
  64. void CMoStatistics::SetCount(long propVal)
  65. {
  66. SetProperty(0x6, VT_I4, propVal);
  67. }
  68. /////////////////////////////////////////////////////////////////////////////
  69. // CMoStatistics operations