/usr/include/XdmfItemFactory.hpp is in libxdmf-dev 3.0+git20160803-4.
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 : XdmfItemFactory.hpp */
/* */
/* Author: */
/* Kenneth Leiter */
/* kenneth.leiter@arl.army.mil */
/* US Army Research Laboratory */
/* Aberdeen Proving Ground, MD */
/* */
/* Copyright @ 2011 US Army Research Laboratory */
/* All Rights Reserved */
/* See Copyright.txt 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 XDMFITEMFACTORY_HPP_
#define XDMFITEMFACTORY_HPP_
// C Compatible Includes
#include "Xdmf.hpp"
#include "XdmfCoreItemFactory.hpp"
#ifdef XDMF_BUILD_DSM
#include "XdmfDSMItemFactory.hpp"
#endif
#ifdef __cplusplus
// Forward Declarations
class XdmfItem;
// Includes
#include "Xdmf.hpp"
#include "XdmfCoreItemFactory.hpp"
/**
* @brief Factory for constructing XdmfItems from their ItemTag and
* ItemProperties.
*/
#ifdef XDMF_BUILD_DSM
class XDMF_EXPORT XdmfItemFactory : public XdmfDSMItemFactory {
#else
class XDMF_EXPORT XdmfItemFactory : public XdmfCoreItemFactory {
#endif
public:
/**
* Create a new XdmfItemFactory.
*
* Example of use:
*
* C++
*
* @dontinclude ExampleXdmfItemFactory.cpp
* @skipline //#initialization
* @until //#initialization
*
* Python
*
* @dontinclude XdmfExampleItemFactory.py
* @skipline #//initialization
* @until #//initialization
*
* @return Constructed XdmfItemFactory.
*/
static shared_ptr<XdmfItemFactory> New();
virtual ~XdmfItemFactory();
virtual shared_ptr<XdmfItem>
createItem(const std::string & itemTag,
const std::map<std::string, std::string> & itemProperties,
const std::vector<shared_ptr<XdmfItem> > & childItems) const;
virtual bool isArrayTag(char * tag) const;
virtual XdmfItem *
DuplicatePointer(shared_ptr<XdmfItem> original) const;
protected:
XdmfItemFactory();
private:
XdmfItemFactory(const XdmfItemFactory &); // Not implemented.
void operator=(const XdmfItemFactory &); // Not implemented.
};
#endif
#endif /* XDMFITEMFACTORY_HPP_ */
|