/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: IIOPipeWork.hpp Date: 2022-6-20 Author: Reece ***/ #pragma once namespace Aurora::IO { struct IIOPipeWork { /** * @brief * @return */ virtual bool Start() = 0; /** * @brief * @return */ virtual bool End() = 0; }; }