ccReservedIDs.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //##########################################################################
  2. //# #
  3. //# CLOUDCOMPARE #
  4. //# #
  5. //# This program is free software; you can redistribute it and/or modify #
  6. //# it under the terms of the GNU General Public License as published by #
  7. //# the Free Software Foundation; version 2 or later of the License. #
  8. //# #
  9. //# This program is distributed in the hope that it will be useful, #
  10. //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
  11. //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  12. //# GNU General Public License for more details. #
  13. //# #
  14. //# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
  15. //# #
  16. //##########################################################################
  17. #ifndef CC_RESERVED_IDS_HEADER
  18. #define CC_RESERVED_IDS_HEADER
  19. //! Unique IDs reserved by CloudCompare for special entities (display elements, etc.)
  20. /** They should all remain below ccUniqueIDGenerator::MinUniqueID (256)
  21. **/
  22. enum class ReservedIDs : unsigned
  23. {
  24. CLIPPING_BOX = 1,
  25. INTERACTIVE_SEGMENTATION_TOOL_POLYLINE = 2,
  26. INTERACTIVE_SEGMENTATION_TOOL_POLYLINE_VERTICES = 3,
  27. TRACE_POLYLINE_TOOL_POLYLINE_TIP = 4,
  28. TRACE_POLYLINE_TOOL_POLYLINE_TIP_VERTICES = 5,
  29. TRACE_POLYLINE_TOOL_POLYLINE = 6,
  30. TRACE_POLYLINE_TOOL_POLYLINE_VERTICES = 7,
  31. };
  32. #endif //CC_RESERVED_IDS_HEADER