1 | /* |
---|---|
2 | * IXSelectInterruptFactory.h |
3 | * Author: Benjamin Sergeant |
4 | * Copyright (c) 2019 Machine Zone, Inc. All rights reserved. |
5 | */ |
6 | |
7 | #pragma once |
8 | |
9 | #include <memory> |
10 | |
11 | namespace ix |
12 | { |
13 | class SelectInterrupt; |
14 | using SelectInterruptPtr = std::unique_ptr<SelectInterrupt>; |
15 | SelectInterruptPtr createSelectInterrupt(); |
16 | } // namespace ix |
17 |