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