blob: b47d7d2aba8d6fb61952fd442f20555f7fc4933c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
namespace NYT::NBacktrace {
////////////////////////////////////////////////////////////////////////////////
class TDummyCursor
{
public:
bool IsFinished() const;
const void* GetCurrentIP() const;
void MoveNext();
};
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NBacktrace
|