SourceXtractorPlusPlus  0.10
Please provide a description of the project.
SourceIdCheckImage.h
Go to the documentation of this file.
1 
17 /*
18  * SegmentationCheckImage.h
19  *
20  * Created on: Dec 11, 2017
21  * Author: mschefer
22  */
23 
24 #ifndef _SEIMPLEMENTATION_CHECKIMAGES_SEGMENTATIONCHECKIMAGE_H_
25 #define _SEIMPLEMENTATION_CHECKIMAGES_SEGMENTATIONCHECKIMAGE_H_
26 
27 #include "SEUtils/Observable.h"
30 
31 namespace SourceXtractor {
32 
33 class SourceIdCheckImage : public Observer<std::shared_ptr<SourceGroupInterface>> {
34 public:
35 
37  m_check_image(check_image)
38  {}
39 
40  virtual void handleMessage(const std::shared_ptr<SourceGroupInterface>& group);
41 
42 private:
44 };
45 
46 
47 } /* namespace SourceXtractor */
48 
49 #endif /* SEIMPLEMENTATION_SEIMPLEMENTATION_CHECKIMAGES_SEGMENTATIONCHECKIMAGE_H_ */
SourceXtractor::Observer
Observer interface to be used with Observable to implement the Observer pattern.
Definition: Observable.h:38
std::shared_ptr
STL class.
SourceXtractor::SourceIdCheckImage::handleMessage
virtual void handleMessage(const std::shared_ptr< SourceGroupInterface > &group)
Definition: SourceIdCheckImage.cpp:32
SourceGroupInterface.h
SourceXtractor
Definition: Aperture.h:30
WriteableImage.h
SourceXtractor::WriteableImage< unsigned int >
SourceXtractor::SourceIdCheckImage::SourceIdCheckImage
SourceIdCheckImage(std::shared_ptr< WriteableImage< unsigned int >> check_image)
Definition: SourceIdCheckImage.h:36
Observable.h
SourceXtractor::SourceIdCheckImage::m_check_image
std::shared_ptr< WriteableImage< unsigned int > > m_check_image
Definition: SourceIdCheckImage.h:43
SourceXtractor::SourceIdCheckImage
Definition: SourceIdCheckImage.h:33