acplmisc.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2015 Autodesk, Inc. All rights reserved.
  4. //
  5. // Use of this software is subject to the terms of the Autodesk license
  6. // agreement provided at the time of installation or download, or which
  7. // otherwise accompanies this software in either electronic or hard copy form.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #pragma once
  11. #include "acpldsddata.h"
  12. class AcPlPlotConfig;
  13. /// <summary>
  14. /// This function publishes the data in dsdDataObj to a device or DWF file specified
  15. /// and configured by the data in the PlotConfig object pointed to by pConfig.
  16. ///
  17. /// If bShowPlotProgress is true, then a plot progress dialog/meter will be displayed.
  18. /// </summary>
  19. /// <param name="dsdDataObj">Input object containing data to be plotted</param>
  20. /// <param name="pConfig">Input pointer to plotConfig object</param>
  21. /// <param name="bShowPlotProgress">Input bool specifying whether or not to display
  22. /// a plot progress dialog</param>
  23. void acplPublishExecute(AcPlDSDData dsdDataObj, AcPlPlotConfig* pConfig,
  24. bool bShowPlotProgress);