OSDN Git Service

Update CWindowsManagerDialog - check some pointers for null and made … (#824) (2)
[winmerge-jp/winmerge-jp.git] / Src / IAbortable.h
1 #pragma once
2
3 /** @brief callback to check if dirscan needs to abort */
4 class IAbortable
5 {
6 public:
7         virtual bool ShouldAbort() const = 0;
8 };