| 1 | #include "Library/Execute/LayoutExecuteInfo.h" |
|---|---|
| 2 | |
| 3 | namespace al { |
| 4 | LayoutExecuteInfo::LayoutExecuteInfo() {} |
| 5 | |
| 6 | void LayoutExecuteInfo::addUpdater(ExecutorListLayoutUpdate* updater) { |
| 7 | mUpdaters[mUpdaterCount] = updater; |
| 8 | mUpdaterCount++; |
| 9 | } |
| 10 | |
| 11 | void LayoutExecuteInfo::addDrawer(ExecutorListLayoutDrawBase* drawer) { |
| 12 | mDrawers[mDrawerCount] = drawer; |
| 13 | mDrawerCount++; |
| 14 | } |
| 15 | } // namespace al |
| 16 |