| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/Layout/LayoutActor.h" |
| 4 | |
| 5 | namespace al { |
| 6 | class LayoutInitInfo; |
| 7 | } |
| 8 | |
| 9 | class FilterScope : public al::LayoutActor { |
| 10 | public: |
| 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 |