/usr/include/dcmtk/dcmdata/cmdlnarg.h is in libdcmtk2-dev 3.6.0-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | /*
*
* Copyright (C) 1994-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmdata
*
* Author: Andrew Hewett
*
* Purpose: Provide prototype of command line argument gathering routine
* for OS environments which cannot pass arguments on the command line.
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:15:40 $
* CVS/RCS Revision: $Revision: 1.10 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef CMDLNARG_H
#define CMDLNARG_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
/** this function is used on certain operating systems (in particular, classic MacOS)
* and allows command line arguments to be input from stdin.
* MT level: Thread unsafe!
* @param argc the argc parameter of main() is passed in this parameter
* @param argv the argv parameter of main() is passed in this parameter
* @param progname program name
*/
void prepareCmdLineArgs(int& argc, char** argv, const char* progname = "aProgram");
#endif
/*
** CVS/RCS Log:
** $Log: cmdlnarg.h,v $
** Revision 1.10 2010-10-14 13:15:40 joergr
** Updated copyright header. Added reference to COPYRIGHT file.
**
** Revision 1.9 2009-11-04 09:58:07 uli
** Switched to logging mechanism provided by the "new" oflog module
**
** Revision 1.8 2007-11-29 14:30:35 meichel
** Updated doxygen API documentation
**
** Revision 1.7 2005/12/08 16:27:58 meichel
** Changed include path schema for all DCMTK header files
**
** Revision 1.6 2001/06/01 15:48:31 meichel
** Updated copyright header
**
** Revision 1.5 2000/04/14 16:01:22 meichel
** Minor changes for thread safety.
**
** Revision 1.4 2000/03/08 16:26:10 meichel
** Updated copyright header.
**
** Revision 1.3 1999/03/31 09:24:28 meichel
** Updated copyright header in module dcmdata
**
** Revision 1.2 1996/09/27 08:22:21 hewett
** Added defines to protect from multiple inclusion.
**
** Revision 1.1 1996/09/24 16:17:59 hewett
** Moved from dcmdata/apps and dcmnet/apps (now part of the dcmdata library).
**
** Revision 1.2 1996/09/03 11:39:01 hewett
** Added copyright information.
**
** Revision 1.1.1.1 1996/03/26 18:38:44 hewett
** Initial Release.
**
** Revision 1.1.1.1 1996/03/25 15:17:00 hewett
** dcmnet DICOM network libraries. Adapted from CEN network libraries
** for use with the DICOM C++ dcmdata toolkit.
**
** Revision 1.1 1996/03/12 15:08:05 hewett
** Main program argc, argv handling for environments which do not make
** argc,argv available in main().
**
**
*/
|