/usr/include/XdmfLightData.h is in libxdmf-dev 2.1.dfsg.1-13.
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 | /*******************************************************************/
/* XDMF */
/* eXtensible Data Model and Format */
/* */
/* Id : $Id: XdmfLightData.h,v 1.8 2008-12-30 20:47:33 clarke Exp $ */
/* Date : $Date: 2008-12-30 20:47:33 $ */
/* Version : $Revision: 1.8 $ */
/* */
/* Author: */
/* Jerry A. Clarke */
/* clarke@arl.army.mil */
/* US Army Research Laboratory */
/* Aberdeen Proving Ground, MD */
/* */
/* Copyright @ 2002 US Army Research Laboratory */
/* All Rights Reserved */
/* See Copyright.txt or http://www.arl.hpc.mil/ice for details */
/* */
/* This software is distributed WITHOUT ANY WARRANTY; without */
/* even the implied warranty of MERCHANTABILITY or FITNESS */
/* FOR A PARTICULAR PURPOSE. See the above copyright notice */
/* for more information. */
/* */
/*******************************************************************/
#ifndef __XdmfLightData_h
#define __XdmfLightData_h
#include "XdmfObject.h"
#ifndef SWIG
#include <string.h> // strcmp, strlen, strcpy
#endif
// typedef XdmfPointer XdmfXmlNode;
struct _xmlNode;
typedef _xmlNode *XdmfXmlNode;
struct _xmlDoc;
typedef _xmlDoc *XdmfXmlDoc;
//! Base object for Light Data (XML)
/*!
This is an abstract convenience object for reading and writing
LightData Files. LightData "points" to HeavyData ; the giga-terabytes of HPC simulations.
A XdmfLightData Object is not used by itself. Rather one of the derived
classes like XdmfGrid or XdmfFormatMulti is used and these derived methods
are used from that class.
*/
class XDMF_EXPORT XdmfLightData : public XdmfObject {
public:
XdmfLightData();
~XdmfLightData();
XdmfConstString GetClassName() { return ( "XdmfLightData" ) ; };
//! Set the current name
XdmfSetStringMacro(Name);
//! Get the current name
XdmfGetValueMacro(Name, XdmfConstString);
//! Set the current filename
XdmfSetStringMacro(FileName);
//! Get the current filename
XdmfGetValueMacro(FileName, XdmfConstString);
/*! Set the current WorkingDirectory
This alleviates the need to hard code pathnames in the
light data. i.e. the heavy and light data can be in
one directory and accessed from another.
*/
XdmfSetStringMacro(WorkingDirectory);
//! Get the current WorkingDirectory
XdmfGetValueMacro(WorkingDirectory, XdmfConstString);
//! Has Object been properly initialized
XdmfGetValueMacro(Initialized, XdmfInt32);
XdmfSetValueMacro(Initialized, XdmfInt32);
/*! To avoid memory leaks, string return values from methods point to a static buffer.
If the calling function wishes to retain this value, it must be copied.
This method copies the value into the static return buffer, allocating space if necessary.
\param ReturnValue A zero terminated string
*/
/*! Get the char * to the string portion of the return buffer.
*/
XdmfConstString GetReturnBuffer() {return(this->StaticReturnBuffer);};
protected:
XdmfConstString DupChars(XdmfPointer Chars);
XdmfConstString DupBuffer(XdmfPointer Buffer);
XdmfString WorkingDirectory;
XdmfString FileName;
XdmfString Name;
XdmfString StaticReturnBuffer;
XdmfInt32 Initialized;
};
#endif // __XdmfLightData_h
|