Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cancel_exception.hpp « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4c19500831c67359b939baa59355b6545d6f3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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(my::Cancellable const & cancellable)
{
  if (cancellable.IsCancelled())
    MYTHROW(CancelException, ("Cancelled"));
}
}  // namespace search