SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
HduNumberTask.h
Go to the documentation of this file.
1
17
18#ifndef _SEIMPLEMENTATION_PLUGIN_HDUNUMBER_HDUNUMBERTASK_H_
19#define _SEIMPLEMENTATION_PLUGIN_HDUNUMBER_HDUNUMBERTASK_H_
20
22
23namespace SourceXtractor {
24
30
31class HduNumberTask : public SourceTask {
32public:
33
37 virtual ~HduNumberTask() = default;
39
40 void computeProperties(SourceInterface& source) const override;
41
42private:
43
44}; /* End of HduNumberTask class */
45
46
47} /* namespace SourceXtractor */
48
49#endif /* _SEIMPLEMENTATION_PLUGIN_HDUNUMBER_HDUNUMBERTASK_H_ */
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
virtual ~HduNumberTask()=default
Destructor.
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