/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: ILoopSource.hpp Date: 2022-2-12 Author: Reece ***/ #pragma once namespace Aurora::Loop { struct ILoopSource { /** * @brief Atomic is-signaled-and-latch * @return */ virtual bool IsSignaled() = 0; /** * @brief Returns a generic description about the loop source handle * @return */ virtual ELoopSource GetType() = 0; }; }