| 41 | } |
| 42 | |
| 43 | void ViewFactory::enqueueViewToPool(const Ref<View>& view) { |
| 44 | std::lock_guard<Mutex> lock(_mutex); |
| 45 | _pooledViews.emplace_back(view); |
| 46 | } |
| 47 | |
| 48 | const StringBox& ViewFactory::getViewClassName() const { |
| 49 | return _viewClassName; |
no outgoing calls