AcCell.h 971 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. //////////////////////////////////////////////////////////////////////////////
  3. //
  4. // Copyright 2015 Autodesk, Inc. All rights reserved.
  5. //
  6. // Use of this software is subject to the terms of the Autodesk license
  7. // agreement provided at the time of installation or download, or which
  8. // otherwise accompanies this software in either electronic or hard copy form.
  9. //
  10. //////////////////////////////////////////////////////////////////////////////
  11. //
  12. // Name: AcCell.h
  13. //
  14. // Description:
  15. //
  16. //////////////////////////////////////////////////////////////////////////////
  17. #pragma once
  18. typedef struct AcCell
  19. {
  20. int mnRow;
  21. int mnColumn;
  22. } AcCell;
  23. typedef AcArray<AcCell> AcCellArray;
  24. typedef struct AcCellRange
  25. {
  26. int mnTopRow;
  27. int mnLeftColumn;
  28. int mnBottomRow;
  29. int mnRightColumn;
  30. bool operator==(const AcCellRange& other) const;
  31. } AcCellRange;
  32. typedef AcArray<AcCellRange> AcCellRangeArray;