1#pragma once
2
3#include "Library/Layout/LayoutActor.h"
4
5namespace al {
6class LayoutInitInfo;
7}
8
9class FilterScope : public al::LayoutActor {
10public:
11 FilterScope(const char* name, const al::LayoutInitInfo& info, const char* suffix);
12 void startAppear();
13 void end();
14 void exeAppear();
15 void exeWait();
16 void exeEnd();
17 bool isEnd() const;
18};
19