| 1820 | typedef df::building_siegeenginest interpose_base; |
| 1821 | |
| 1822 | DEFINE_VMETHOD_INTERPOSE(df::workshop_profile*, getWorkshopProfile, ()) |
| 1823 | { |
| 1824 | if (auto engine = find_engine(this)) |
| 1825 | return &engine->profile; |
| 1826 | |
| 1827 | return INTERPOSE_NEXT(getWorkshopProfile)(); |
| 1828 | } |
| 1829 | |
| 1830 | DEFINE_VMETHOD_INTERPOSE(df::stockpile_links*, getStockpileLinks, ()) |
| 1831 | { |
nothing calls this directly
no test coverage detected