1234567891011121314151617 |
- #pragma once
- namespace NYT::NBacktrace {
- ////////////////////////////////////////////////////////////////////////////////
- class TDummyCursor
- {
- public:
- bool IsFinished() const;
- const void* GetCurrentIP() const;
- void MoveNext();
- };
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT::NBacktrace
|