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

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 "modatum.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "MoSpheroid.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMoDatum properties
  10. long CMoDatum::GetType()
  11. {
  12. long result;
  13. GetProperty(0x1, VT_I4, (void*)&result);
  14. return result;
  15. }
  16. void CMoDatum::SetType(long propVal)
  17. {
  18. SetProperty(0x1, VT_I4, propVal);
  19. }
  20. CString CMoDatum::GetName()
  21. {
  22. CString result;
  23. GetProperty(0x2, VT_BSTR, (void*)&result);
  24. return result;
  25. }
  26. void CMoDatum::SetName(LPCTSTR propVal)
  27. {
  28. SetProperty(0x2, VT_BSTR, propVal);
  29. }
  30. CMoSpheroid CMoDatum::GetSpheroid()
  31. {
  32. LPDISPATCH pDispatch;
  33. GetProperty(0x3, VT_DISPATCH, (void*)&pDispatch);
  34. return CMoSpheroid(pDispatch);
  35. }
  36. void CMoDatum::SetSpheroid(LPDISPATCH propVal)
  37. {
  38. SetProperty(0x3, VT_DISPATCH, propVal);
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CMoDatum operations