00001 /* * 00002 * This file is part of the ESO UVES Pipeline * 00003 * Copyright (C) 2004,2005 European Southern Observatory * 00004 * * 00005 * This library is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the Free Software * 00017 * Foundation, 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA * 00018 * */ 00019 00020 /* 00021 * $Author: amodigli $ 00022 * $Date: 2006/10/25 06:46:09 $ 00023 * $Revision: 1.5 $ 00024 * $Name: sinfo-2_2_5 $ 00025 * $Log: sinfo_dump.h,v $ 00026 * Revision 1.5 2006/10/25 06:46:09 amodigli 00027 * fixed warnings from static checks 00028 * 00029 * Revision 1.4 2006/10/17 11:13:30 amodigli 00030 * added config.h 00031 * 00032 * Revision 1.3 2006/10/16 07:26:23 amodigli 00033 * shortened line length 00034 * 00035 * Revision 1.2 2006/10/04 06:17:45 amodigli 00036 * added doxygen doc 00037 * 00038 * Revision 1.1 2006/08/09 12:20:11 amodigli 00039 * added sinfo_dump.h sinfo_dump.c 00040 * 00041 * Revision 1.2 2005/12/19 16:17:56 jmlarsen 00042 * Replaced bool -> int 00043 * 00044 */ 00045 #ifndef SINFO_DUMP_H 00046 #define SINFO_DUMP_H 00047 00048 #ifdef HAVE_CONFIG_H 00049 # include <config.h> 00050 #endif 00051 00052 #include <cpl.h> 00053 00054 cpl_error_code 00055 sinfo_print_cpl_propertylist(const cpl_propertylist *pl, 00056 long low, 00057 long high); 00058 00059 cpl_error_code 00060 sinfo_print_cpl_property(const cpl_property *); 00061 00062 cpl_error_code 00063 sinfo_print_cpl_frameset(const cpl_frameset *); 00064 00065 cpl_error_code 00066 sinfo_print_cpl_frame(const cpl_frame *); 00067 00068 const char * 00069 sinfo_tostring_cpl_type(cpl_type t); 00070 00071 const char * 00072 sinfo_tostring_cpl_frame_type(cpl_frame_type); 00073 00074 const char * 00075 sinfo_tostring_cpl_frame_group(cpl_frame_group); 00076 00077 const char * 00078 sinfo_tostring_cpl_frame_level(cpl_frame_level); 00079 00080 #endif /* SINFO_DUMP_H */