/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: IIOProcessorItem.hpp Date: 2022-6-6 Author: Reece ***/ #pragma once namespace Aurora::IO { struct IIOProcessorItem : IIOProcessorManualInvoker { virtual bool StopWatch() = 0; virtual bool FailWatch() = 0; }; }