AcGiLineAttrUtils.h 1.0 KB

123456789101112131415161718192021222324252627282930
  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. // MODULE: AcGiLineAttrUtils.h
  14. // PURPOSE: Utility functions to convert between different
  15. // line attributes tables
  16. // HISTORY: 03/17/2002
  17. // ********************************************************************************
  18. #pragma once
  19. #include "acdb.h"
  20. class AcGiLineAttrUtils
  21. {
  22. public:
  23. // Unicode: leave as char for now
  24. static char __stdcall acgiLineWeightToIndex(AcDb::LineWeight lw);
  25. static AcDb::LineWeight __stdcall acgiIndexToLineWeight(char index);
  26. };