This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/search/cancel_exception.hpp
2019-02-15 14:06:19 +03:00

17 lines
458 B
C++

#pragma once
#include "base/cancellable.hpp"
#include "base/exception.hpp"
namespace search
{
// This exception can be thrown from the deep darkness of search and
// geometry retrieval for fast cancellation of time-consuming tasks.
DECLARE_EXCEPTION(CancelException, RootException);
inline void BailIfCancelled(base::Cancellable const & cancellable)
{
if (cancellable.IsCancelled())
MYTHROW(CancelException, ("Cancelled"));
}
} // namespace search