mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-22 14:13:45 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
17
libs/search/cancel_exception.hpp
Normal file
17
libs/search/cancel_exception.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user