blob: 3a2a4e24c4668eef4be038642fd018a8c4cd731b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <library/cpp/yt/misc/guid.h>
#include <array>
#include <cstdint>
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
std::array<int, 2> GetTestVariable3();
void SetTestVariable3(std::array<int, 2> val);
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|