dbimage.h 984 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. //
  11. //
  12. // DESCRIPTION: Class header for AcDbImage. Abstract base class
  13. // for raster images.
  14. //
  15. //
  16. #ifndef AD_DBIMAGE_H
  17. #define AD_DBIMAGE_H
  18. #include "dbmain.h"
  19. #include "acgi.h"
  20. #pragma pack (push, 8)
  21. class AcDbImage: public AcDbEntity
  22. {
  23. public:
  24. ACRX_DECLARE_MEMBERS(AcDbImage);
  25. virtual AcGiSentScanLines*
  26. getScanLines(const AcGiRequestScanLines&) const = 0;
  27. virtual Adesk::Boolean
  28. freeScanLines(AcGiSentScanLines*) const = 0;
  29. };
  30. #pragma pack (pop)
  31. #endif // AD_DBIMAGE_H