dummy_cursor.h 359 B

1234567891011121314151617
  1. #pragma once
  2. namespace NYT::NBacktrace {
  3. ////////////////////////////////////////////////////////////////////////////////
  4. class TDummyCursor
  5. {
  6. public:
  7. bool IsFinished() const;
  8. const void* GetCurrentIP() const;
  9. void MoveNext();
  10. };
  11. ////////////////////////////////////////////////////////////////////////////////
  12. } // namespace NYT::NBacktrace