yql_pos_handle.h 219 B

12345678910111213
  1. #pragma once
  2. #include <util/system/types.h>
  3. namespace NYql {
  4. struct TPositionHandle {
  5. friend struct TExprContext;
  6. private:
  7. ui32 Handle = 0; // 0 is guaranteed to represent default-constructed TPosition
  8. };
  9. }