kopia lustrzana https://github.com/jameshball/osci-render
17 wiersze
338 B
C++
17 wiersze
338 B
C++
/*
|
|
* IXSelectInterruptFactory.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace ix
|
|
{
|
|
class SelectInterrupt;
|
|
using SelectInterruptPtr = std::unique_ptr<SelectInterrupt>;
|
|
SelectInterruptPtr createSelectInterrupt();
|
|
} // namespace ix
|