| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/HostIO/IUseName.h" |
| 4 | |
| 5 | namespace al { |
| 6 | class StageSwitchKeeper; |
| 7 | |
| 8 | class IUseStageSwitch : virtual public IUseName { |
| 9 | public: |
| 10 | virtual StageSwitchKeeper* getStageSwitchKeeper() const = 0; |
| 11 | virtual void initStageSwitchKeeper() = 0; |
| 12 | }; |
| 13 | |
| 14 | } // namespace al |
| 15 |