blob: ec7ba65ebf547cc2195a780863fe78621a02595e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
struct TStrongTypedefOptions
{
bool IsComparable = true;
};
template <class T, class TTag, TStrongTypedefOptions Options = TStrongTypedefOptions()>
class TStrongTypedef;
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|