/usr/include/dcmtk/ofstd/ofstream.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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | /*
*
* Copyright (C) 2002-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: ofstd
*
* Author: Andreas Barth
*
* Purpose: C++ header to handle standard and old stream libraries.
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:15:50 $
* CVS/RCS Revision: $Revision: 1.11 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef OFSTREAM_H
#define OFSTREAM_H
#include "dcmtk/config/osconfig.h"
#ifdef USE_STD_CXX_INCLUDES
#include <iostream>
#ifdef HAVE_IOS
#include <ios>
#endif
#include <fstream>
#include <iomanip>
// For standard STREAMS library: preference for standard stringstream
#if defined(HAVE_SSTREAM)
#include <sstream>
#define USE_STRINGSTREAM
#elif defined(HAVE_STRSTREAM)
#include <strstream>
#else
#error DCMTK needs stringstream or strstream type
#endif
/* DCMTK by default does not anymore pollute the default namespace by
* importing namespace std. Earlier releases did this to simplify compatibility
* with older compilers where STL classes were not consistently defined
* in namespace std. We now have configure macros which should care for this.
* If user code still relies on namespace std to be included, compile with
* macro USING_STD_NAMESPACE defined.
*/
#ifdef USING_STD_NAMESPACE
namespace std { }
using namespace std;
#endif
#else /* USE_STD_CXX_INCLUDES */
#include <iostream.h>
#include <fstream.h>
// For old STREAMS library: preference for strstream
#if defined(HAVE_STRSTREA_H) || defined(HAVE_STRSTREAM_H)
#ifdef HAVE_STRSTREA_H
#include <strstrea.h>
#else
#include <strstream.h>
#endif
#elif defined(HAVE_SSTREAM_H)
#include <sstream.h>
#define USE_STRINGSTREAM
#else
#error DCMTK needs stringstream or strstream type
#endif
#include <iomanip.h>
#endif
#ifdef USE_STRINGSTREAM
// define STD_NAMESPACE to std:: if the standard namespace exists
#ifndef STD_NAMESPACE
#ifdef HAVE_STD_NAMESPACE
#define STD_NAMESPACE std::
#else
#define STD_NAMESPACE
#endif
#endif
#define OFendl STD_NAMESPACE endl
typedef STD_NAMESPACE stringstream OFStringStream;
typedef STD_NAMESPACE ostringstream OFOStringStream;
typedef STD_NAMESPACE istringstream OFIStringStream;
#define OFStringStream_ends ""
#define OFSTRINGSTREAM_GETOFSTRING(oss, string) \
OFString string((oss).str().c_str());
// The following two macros define a block structure. Please note that variables
// declared between xxx_GETSTR and xxx_FREESTR are only valid within this scope.
#define OFSTRINGSTREAM_GETSTR(oss, chptr) \
{ \
STD_NAMESPACE string chptr##__ = (oss).str(); \
const char *chptr = chptr##__.c_str();
#define OFSTRINGSTREAM_FREESTR(chptr) \
}
#else /* USE_STRINGSTREAM */
typedef strstream OFStringStream;
typedef ostrstream OFOStringStream;
typedef istrstream OFIStringStream;
#define OFStringStream_ends ends
#define OFSTRINGSTREAM_GETOFSTRING(oss, string) \
char * string##__ = (oss).str(); \
OFString string(string##__); \
delete[] string##__;
// The following two macros define a block structure. Please note that variables
// declared between xxx_GETSTR and xxx_FREESTR are only valid within this scope.
#define OFSTRINGSTREAM_GETSTR(oss, chptr) \
{ \
const char *chptr = (oss).str();
#define OFSTRINGSTREAM_FREESTR(chptr) \
delete[] (char *)chptr; \
}
#endif /* USE_STRINGSTREAM */
#endif /* USE_STD_CXX_INCLUDES */
/*
* CVS/RCS Log:
* $Log: ofstream.h,v $
* Revision 1.11 2010-10-14 13:15:50 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.10 2007/02/19 15:16:16 meichel
* Namespace std is not imported into the default namespace anymore,
* unless DCMTK is compiled with macro USING_STD_NAMESPACE defined.
*
* Revision 1.9 2006/08/15 15:52:23 meichel
* Updated all code in module dcmdata to correctly compile when
* all standard C++ classes remain in namespace std.
*
* Revision 1.8 2006/08/14 16:42:02 meichel
* Defined two new macros: STD_NAMESPACE is defined to std:: if the standard
* namespace exists and empty otherwise. OFendl is defined as std::endl if
* the standard namespace exists and as endl otherwise.
*
* Revision 1.7 2005/12/08 16:06:06 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.6 2004/05/07 10:46:32 meichel
* Removed unneeded semicolon, reported by gcc 3.4
*
* Revision 1.5 2004/01/16 10:30:12 joergr
* Removed acknowledgements with e-mail addresses from CVS log.
*
* Revision 1.4 2003/12/05 10:37:41 joergr
* Removed leading underscore characters from preprocessor symbols (reserved
* symbols). Updated copyright date where appropriate.
*
* Revision 1.3 2002/12/11 15:54:48 meichel
* Added empty namespace std declaration, needed on MSVC.
*
* Revision 1.2 2002/05/02 14:05:50 joergr
* Added support for standard and non-standard string streams (which one is
* supported is detected automatically via the configure mechanism).
*
* Revision 1.1 2002/04/16 13:36:03 joergr
* Added configurable support for C++ ANSI standard includes (e.g. streams).
*
*/
|