2019-03-15 02:37:38 +01:00
|
|
|
/*
|
|
|
|
* IXSelectInterruptFactory.h
|
|
|
|
* Author: Benjamin Sergeant
|
|
|
|
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace ix
|
|
|
|
{
|
|
|
|
class SelectInterrupt;
|
2020-03-24 18:00:41 +01:00
|
|
|
using SelectInterruptPtr = std::unique_ptr<SelectInterrupt>;
|
|
|
|
SelectInterruptPtr createSelectInterrupt();
|
2019-05-30 17:46:50 +02:00
|
|
|
} // namespace ix
|