Searched refs:TypedToolParam (Results 1 – 1 of 1) sorted by relevance
28 class TypedToolParam; variable39 return std::unique_ptr<ToolParam>(new TypedToolParam<T>(default_value)); in Create()43 TypedToolParam<T>* AsTyped() { in AsTyped()45 return static_cast<TypedToolParam<T>*>(this); in AsTyped()49 const TypedToolParam<T>* AsConstTyped() const { in AsConstTyped()51 return static_cast<const TypedToolParam<T>*>(this); in AsConstTyped()73 class TypedToolParam : public ToolParam {75 explicit TypedToolParam(const T& value) in TypedToolParam() function90 return std::unique_ptr<ToolParam>(new TypedToolParam<T>(value_)); in Clone()