blob: bdeda7879509a67102cc08a23ee3e36ac1e39a46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <memory>
namespace NYT::NAuth {
struct IServiceTicketAuthPtrWrapper;
using IServiceTicketAuthPtrWrapperPtr = std::shared_ptr<IServiceTicketAuthPtrWrapper>;
} // namespace NYT::NAuth
|