X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkCommon.h;h=4087259d07feb1c70aff82e97557398995890785;hb=12d316bb5efa14dd616e9b3cfcceb515a986341d;hp=ce70757a5496a74d2df199c7197879d34cb84e35;hpb=9bcf64b7f7c5a7f0a39843df634c05b5d9e4e237;p=clitk.git diff --git a/common/clitkCommon.h b/common/clitkCommon.h index ce70757..4087259 100644 --- a/common/clitkCommon.h +++ b/common/clitkCommon.h @@ -1,39 +1,37 @@ -#ifndef CLITKCOMMON_H -#define CLITKCOMMON_H +/*========================================================================= + Program: vv http://www.creatis.insa-lyon.fr/rio/vv + + Authors belong to: + - University of LYON http://www.universite-lyon.fr/ + - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr -/** - ------------------------------------------------------------------- - * @file clitkCommon.h - * @author David Sarrut - * @date 17 May 2006 07:57:56 + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the copyright notices for more information. - * @brief + It is distributed under dual licence - -------------------------------------------------------------------*/ + - BSD See included LICENSE.txt file + - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +======================================================================-====*/ + +#ifndef CLITKCOMMON_H +#define CLITKCOMMON_H -// std include -#include -#include -#include -#include -#include -#include -#include -#include -#include +// clitk include +#include "clitkConfiguration.h" +#include "clitkPortability.h" -#include "itkMacro.h" +// itk include (include std) #include +#include #include #include //-------------------------------------------------------------------- namespace clitk { - -#if defined(WIN32) -#define lrint(x) (floor(x+(x>0) ? 0.5 : -0.5)) -#endif - + typedef unsigned char uchar; typedef unsigned short ushort; typedef unsigned int uint; @@ -52,10 +50,10 @@ namespace clitk { // GGO with modified struct name #define GGO(ggo_filename, args_info) \ args_info_##ggo_filename args_info; \ - cmdline_parser2(argc, argv, &args_info, 1, 1, 0); \ + cmdline_parser_##ggo_filename##2(argc, argv, &args_info, 1, 1, 0); \ if (args_info.config_given) \ - cmdline_parser_configfile (args_info.config_arg, &args_info, 0, 0, 1); \ - else cmdline_parser(argc, argv, &args_info); + cmdline_parser_##ggo_filename##_configfile (args_info.config_arg, &args_info, 0, 0, 1); \ + else cmdline_parser_##ggo_filename(argc, argv, &args_info); //-------------------------------------------------------------------- // skip line with # @@ -182,6 +180,9 @@ namespace clitk { void openFileForReading(std::ifstream & is, const std::string & filename); void openFileForWriting(std::ofstream & os, const std::string & filename); + //-------------------------------------------------------------------- + void readDoubleFromFile(const std::string & filename, std::vector & list); + //-------------------------------------------------------------------- double cotan(double i); double invcotan(double i);