- Timestamp:
- 05/24/11 17:37:21 (14 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fitsdump.cc
r10793 r10797 6 6 */ 7 7 //**************************************************************** 8 #include "FACT.h"9 8 #include "Configuration.h" 10 9 … … 586 585 } 587 586 588 if (conf.Has Print())587 if (conf.HasVersion() || conf.HasPrint()) 589 588 return -1; 590 if (conf.HasVersion())591 {592 FACT::PrintVersion(argv[0]);593 return -1;594 }595 589 596 590 if (conf.HasHelp()) -
trunk/FACT++/src/scheduler.cc
r10780 r10797 14 14 #include <mysql++/mysql++.h> 15 15 16 #include "FACT.h"17 16 #include "Dim.h" 18 17 #include "Time.h" … … 824 823 } 825 824 826 if (conf.Has Print())825 if (conf.HasVersion() || conf.HasPrint()) 827 826 return -1; 828 829 if (conf.HasVersion())830 {831 FACT::PrintVersion(argv[0]);832 return -1;833 }834 827 835 828 if (conf.HasHelp()) -
trunk/FACT++/src/triggerschedule.cc
r10765 r10797 2 2 #include <dic.hxx> 3 3 4 #include "FACT.h"5 4 #include "Dim.h" 6 5 #include "Configuration.h" … … 84 83 } 85 84 86 if (conf.Has Print())85 if (conf.HasVersion() || conf.HasPrint()) 87 86 return -1; 88 89 if (conf.HasVersion())90 {91 FACT::PrintVersion(argv[0]);92 return -1;93 }94 87 95 88 if (conf.HasHelp())
Note:
See TracChangeset
for help on using the changeset viewer.