X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fcsvtodiag.tcl;h=6dcd1be4986c28dbda69a4351cd37cde15a4a71f;hp=e5d6a3f3f4ffd4a68c4ab6111e6cf1b0771ea528;hb=473824797f568578dc17d7242551cb2f7ccef46c;hpb=84d7b06c13daa609e93f353e655c4b02f936d65c diff --git a/src/csvtodiag.tcl b/src/csvtodiag.tcl index e5d6a3f..6dcd1be 100644 --- a/src/csvtodiag.tcl +++ b/src/csvtodiag.tcl @@ -1,8 +1,7 @@ # This file is part of the YAZ toolkit -# Copyright (c) Index Data 1996-2005 +# Copyright (C) Index Data # See the file LICENSE for details. # -# $Id: csvtodiag.tcl,v 1.1 2005-04-22 08:27:58 adam Exp $ # # Converts a CSV file with diagnostics to C+H file for easy # maintenance @@ -17,10 +16,17 @@ proc csvtodiag {ifiles name alias} { set cfile [open [lindex $ifiles 1] w] set hfile [open [lindex $ifiles 2] w] set lineno 0 - set preamble "/* Generated automatically by csvtodiag.tcl from [lindex $ifiles 0] */" + puts $cfile "/** \\file [lindex $ifiles 1]" + puts $hfile "/** \\file [lindex $ifiles 2]" + set preamble " \\brief Diagnostics: Generated by csvtodiag.tcl from [lindex $ifiles 0] */" puts $cfile $preamble + puts $cfile "\#ifdef HAVE_CONFIG_H" + puts $cfile "\#include " + puts $cfile "\#endif" + puts $cfile " #include \"diag-entry.h\" +\#include \"[lindex $ifiles 2]\" struct yaz_diag_entry yaz_diag_${name}_tab\[\] = \{ " puts $hfile $preamble