SourceXtractorPlusPlus  0.12
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DetectionFramePixelValuesTaskFactory.cpp
Go to the documentation of this file.
1 
24 
28 
29 using namespace Euclid::Configuration;
30 
31 namespace SourceXtractor {
32 
33 std::shared_ptr<Task> DetectionFramePixelValuesTaskFactory::createTask(const PropertyId& property_id) const {
34  if (property_id == PropertyId::create<DetectionFramePixelValues>()) {
35  return std::make_shared<DetectionFramePixelValuesTask>();
36  } else {
37  return nullptr;
38  }
39 }
40 
41 } // SEImplementation namespace
42 
43 
44 
Identifier used to set and retrieve properties.
Definition: PropertyId.h:40