SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
ReferenceCoordinatesTask.h
Go to the documentation of this file.
1
18#ifndef _SEIMPLEMENTATION_PLUGIN_REFERENCECOORDINATES_REFERENCECOORDINATESTASK_H_
19#define _SEIMPLEMENTATION_PLUGIN_REFERENCECOORDINATES_REFERENCECOORDINATESTASK_H_
20
22
23namespace SourceXtractor {
24
31public:
32
36 virtual ~ReferenceCoordinatesTask() = default;
37
40
41 void computeProperties(SourceInterface& source) const override;
42
43private:
44 unsigned int m_instance;
45
46}; /* End of ReferenceCoordinatesTask class */
47
48}
49
50
51#endif /* _SEIMPLEMENTATION_PLUGIN_REFERENCECOORDINATES_REFERENCECOORDINATESTASK_H_ */
virtual ~ReferenceCoordinatesTask()=default
Destructor.
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
ReferenceCoordinatesTask(unsigned int instance)
Constructor.
The SourceInterface is an abstract "source" that has properties attached to it.
A Task that acts on a Source to compute one or more properties.
Definition SourceTask.h:36