direct_access.h 440 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <library/cpp/yt/misc/guid.h>
  3. #include <array>
  4. #include <cstdint>
  5. namespace NYT {
  6. ////////////////////////////////////////////////////////////////////////////////
  7. TGuid GetTestVariable2();
  8. void SetTestVariable2(TGuid val);
  9. std::array<int, 4> GetTestVariable3();
  10. void SetTestVariable3(std::array<int, 4> val);
  11. ////////////////////////////////////////////////////////////////////////////////
  12. } // namespace NYT