SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
WorldCentroidTask.h
Go to the documentation of this file.
1
17/*
18 * WorldCentroidTask.h
19 *
20 * Created on: Nov 21, 2016
21 * Author: mschefer
22 */
23
24#ifndef _SEIMPLEMENTATION_PLUGIN_WORLDCENTROID_WORLDCENTROIDTASK_H_
25#define _SEIMPLEMENTATION_PLUGIN_WORLDCENTROID_WORLDCENTROIDTASK_H_
26
28
29namespace SourceXtractor {
30
32
33public:
34
35 virtual ~WorldCentroidTask() = default;
36
37 void computeProperties(SourceInterface& source) const override;
38
39private:
40
41};
42
43}
44
45#endif
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
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
virtual ~WorldCentroidTask()=default