Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.3 KiB

  1. #include "stdafx.h"
  2. #include "objects.h"
  3. #include "maindoc.h"
  4. /***********************************************************
  5. Function:
  6. Arguments:
  7. Return:
  8. Purpose:
  9. Author(s):
  10. Revision:
  11. Date:
  12. ***********************************************************/
  13. COleDsPrintJob::COleDsPrintJob( )
  14. {
  15. }
  16. /***********************************************************
  17. Function:
  18. Arguments:
  19. Return:
  20. Purpose:
  21. Author(s):
  22. Revision:
  23. Date:
  24. ***********************************************************/
  25. COleDsPrintJob::COleDsPrintJob( IUnknown *pIUnk): COleDsObject( pIUnk )
  26. {
  27. m_bHasChildren = FALSE;
  28. }
  29. /***********************************************************
  30. Function:
  31. Arguments:
  32. Return:
  33. Purpose:
  34. Author(s):
  35. Revision:
  36. Date:
  37. ***********************************************************/
  38. COleDsPrintJob::~COleDsPrintJob( )
  39. {
  40. }
  41. /***********************************************************
  42. Function:
  43. Arguments:
  44. Return:
  45. Purpose:
  46. Author(s):
  47. Revision:
  48. Date:
  49. ***********************************************************/
  50. HRESULT COleDsPrintJob::ReleaseIfNotTransient( void )
  51. {
  52. return S_OK;
  53. }