/*******************************************************************/ /* XDMF */ /* eXtensible Data Model and ValuesXML */ /* */ /* Id : Id */ /* Date : $Date$ */ /* Version : $Revision$ */ /* */ /* 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 __XdmfValuesXML_h #define __XdmfValuesXML_h #include "XdmfValues.h" namespace xdmf2 { //! Parent Class for handeling I/O of actual data for an XdmfDataStructure /*! This is the base class for access of values. By default, the ValuesXML are in XML and handled XdmfValuesXMLXML. Otherwise they're handled by XdmfValuesXMLXXX (where XXX is the format). An XdmfDataStructure Node Looks like : \verbatim 1.1 3.3 5.5 7.7 9.9 11 13.1 15 OR MyData.h5:/AllValuesXML/ThisArray \endverbatim XdmfValuesXML is used to access the "1.1 3.3 5.5 7.7 9.9 11 13.1 15" part wheather it's in the XML or in a file described in the XML. This class is overreidden for various formats supported by Xdmf (i.e. XML, HDF5, etc.) */ class XDMF_EXPORT XdmfValuesXML : public XdmfValues { public : XdmfValuesXML(); virtual ~XdmfValuesXML(); XdmfConstString GetClassName() { return("XdmfValuesXML"); } ; //! Read the Array from the External Representation XdmfArray *Read(XdmfArray *Array=NULL); //! Write the Array to the External Representation XdmfInt32 Write(XdmfArray *Array, XdmfConstString HeavyDataSetName=NULL); protected : }; } #endif