Brad Bishop | 3539db6 | 2017-05-30 14:21:12 -0400 | [diff] [blame] | 1 | % if c.defer: |
| 2 | std::make_unique<DeferrableCallback<ConfigPropertyCallbacks, SDEventTimer>>( |
| 3 | ${indent(1)}ConfigPropertyCallbackGroups::get()[${c.graph}], |
| 4 | ${indent(1)}*ConfigConditions::get()[${c.condition}], |
| 5 | ${indent(1)}${c.defer})\ |
| 6 | % else: |
Brad Bishop | 4041d72 | 2017-05-21 10:06:07 -0400 | [diff] [blame] | 7 | std::make_unique<ConditionalCallback<ConfigPropertyCallbacks>>( |
| 8 | ${indent(1)}ConfigPropertyCallbackGroups::get()[${c.graph}], |
| 9 | ${indent(1)}*ConfigConditions::get()[${c.condition}])\ |
Brad Bishop | 3539db6 | 2017-05-30 14:21:12 -0400 | [diff] [blame] | 10 | % endif\ |