Changeset 579 for trunk/zoo-project/zoo-kernel/otbZooWatcher.h
- Timestamp:
- Feb 12, 2015, 5:01:11 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/otbZooWatcher.h
r558 r579 21 21 #include "service.h" 22 22 23 /** 24 * Observer used to access the ongoing status of a running OTB Application 25 */ 23 26 class /*ITK_EXPORT*/ ZooWatcher : public otb::FilterWatcherBase 24 27 { 25 28 public: 26 29 27 /** Constructor. Takes a ProcessObject to monitor and an optional 28 * comment string that is prepended to each event message. */ 30 /** 31 * Constructor 32 * @param process the itk::ProcessObject to monitor 33 * @param comment comment string that is prepended to each event message 34 */ 29 35 ZooWatcher(itk::ProcessObject* process, 30 36 const char *comment = ""); 31 37 38 /** 39 * Constructor 40 * @param process the itk::ProcessObject to monitor 41 * @param comment comment string that is prepended to each event message 42 */ 32 43 ZooWatcher(itk::ProcessObject* process, 33 44 const std::string& comment = ""); … … 36 47 ZooWatcher(); 37 48 38 /** Get/Set/Free Configuration maps */ 49 /** 50 * Copy the original conf in the m_Conf property 51 * 52 * @param conf the maps pointer to copy 53 */ 39 54 void SetConf(maps **conf) 40 55 { 41 56 m_Conf=dupMaps(conf); 42 57 } 58 /** 59 * Get Configuration maps (m_Conf) 60 * @return the m_Conf property 61 */ 43 62 const maps& GetConf() const 44 63 { 45 64 return *m_Conf; 46 65 } 66 /** 67 * Free Configuration maps (m_Conf) 68 */ 47 69 void FreeConf(){ 48 70 freeMaps(&m_Conf);
Note: See TracChangeset
for help on using the changeset viewer.