acut.h 899 B

12345678910111213141516171819202122232425262728293031323334
  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. //
  13. // DESCRIPTION:
  14. //
  15. // This header file contains definitions for the acutil library
  16. //
  17. //
  18. #pragma once
  19. #pragma pack (push, 8)
  20. struct AcUt {
  21. enum QFormatBitFlags {
  22. kSuppressZeroFeet = 0x100,
  23. kSuppressZeroInches = 0x200,
  24. kSuppressLeadingZero = 0x400,
  25. kSuppressTrailingZero = 0x800,
  26. kIgnoreUnitMode = 0x1000,
  27. kUseAltUnits = 0x2000
  28. };
  29. };
  30. #pragma pack (pop)