SourceXtractorPlusPlus  0.14
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MoffatCheckImage.h
Go to the documentation of this file.
1 
17 /*
18  * MoffatCheckImage.h
19  *
20  * Created on: 2019 M02 5
21  * Author: mschefer
22  */
23 
24 #ifndef _SEIMPLEMENTATION_CHECKIMAGES_MOFFATCHECKIMAGE_H_
25 #define _SEIMPLEMENTATION_CHECKIMAGES_MOFFATCHECKIMAGE_H_
26 
27 #include "SEUtils/Observable.h"
30 
31 namespace SourceXtractor {
32 
33 class MoffatCheckImage : public Observer<std::shared_ptr<SourceGroupInterface>> {
34 public:
35 
37 
38  virtual void handleMessage(const std::shared_ptr<SourceGroupInterface>& group);
39 };
40 
41 
42 } /* namespace SourceXtractor */
43 
44 
45 
46 #endif /* _SEIMPLEMENTATION_CHECKIMAGES_MOFFATCHECKIMAGE_H_ */
virtual void handleMessage(const std::shared_ptr< SourceGroupInterface > &group)
Observer interface to be used with Observable to implement the Observer pattern.
Definition: Observable.h:38