00001 /* 00002 * 00003 * Copyright (C) 1994-2010, OFFIS e.V. 00004 * All rights reserved. See COPYRIGHT file for details. 00005 * 00006 * This software and supporting documentation were developed by 00007 * 00008 * OFFIS e.V. 00009 * R&D Division Health 00010 * Escherweg 2 00011 * D-26121 Oldenburg, Germany 00012 * 00013 * 00014 * Module: dcmdata 00015 * 00016 * Author: Andreas Barth 00017 * 00018 * Purpose: functions to derive VM from string 00019 * 00020 * Last Update: $Author: joergr $ 00021 * Update Date: $Date: 2010-10-14 13:15:42 $ 00022 * CVS/RCS Revision: $Revision: 1.9 $ 00023 * Status: $State: Exp $ 00024 * 00025 * CVS/RCS Log at end of file 00026 * 00027 */ 00028 00029 #ifndef DCVM_H 00030 #define DCVM_H 00031 00032 #include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */ 00033 00038 unsigned long getVMFromString(const char * val); 00039 00047 char * getFirstValueFromString(const char * & s); 00048 00049 00050 #endif 00051 00052 /* 00053 ** CVS/RCS Log: 00054 ** $Log: dcvm.h,v $ 00055 ** Revision 1.9 2010-10-14 13:15:42 joergr 00056 ** Updated copyright header. Added reference to COPYRIGHT file. 00057 ** 00058 ** Revision 1.8 2009-11-04 09:58:07 uli 00059 ** Switched to logging mechanism provided by the "new" oflog module 00060 ** 00061 ** Revision 1.7 2007-11-29 14:30:35 meichel 00062 ** Updated doxygen API documentation 00063 ** 00064 ** Revision 1.6 2005/12/08 16:28:49 meichel 00065 ** Changed include path schema for all DCMTK header files 00066 ** 00067 ** Revision 1.5 2001/06/01 15:48:47 meichel 00068 ** Updated copyright header 00069 ** 00070 ** Revision 1.4 2000/03/08 16:26:20 meichel 00071 ** Updated copyright header. 00072 ** 00073 ** Revision 1.3 1999/03/31 09:24:53 meichel 00074 ** Updated copyright header in module dcmdata 00075 ** 00076 ** Revision 1.2 1996/03/26 09:59:20 meichel 00077 ** corrected bug (deletion of const char *) which prevented compilation on NeXT 00078 ** 00079 ** Revision 1.1 1996/01/29 13:38:15 andreas 00080 ** - new put method for every VR to put value as a string 00081 ** - better and unique print methods 00082 ** 00083 */ 00084