/* * IXSelectInterruptFactory.cpp * Author: Benjamin Sergeant * Copyright (c) 2019 Machine Zone, Inc. All rights reserved. */ #include "IXSelectInterruptFactory.h" #if defined(__linux__) || defined(__APPLE__) # include #else # include #endif namespace ix { std::shared_ptr createSelectInterrupt() { #if defined(__linux__) || defined(__APPLE__) return std::make_shared(); #else return std::make_shared(); #endif } }