/* * IXSelectInterruptFactory.h * Author: Benjamin Sergeant * Copyright (c) 2019 Machine Zone, Inc. All rights reserved. */ #pragma once #include namespace ix { class SelectInterrupt; using SelectInterruptPtr = std::unique_ptr; SelectInterruptPtr createSelectInterrupt(); } // namespace ix