/usr/include/InsightToolkit/Numerics/FEM/itkFEMLoadTest.h is in libinsighttoolkit3-dev 3.20.1-1.
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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkFEMLoadTest.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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 notices for more information.
=========================================================================*/
#ifndef __itkFEMLoadTest_h
#define __itkFEMLoadTest_h
#include "itkFEMLoadElementBase.h"
namespace itk {
namespace fem {
/**
* \class LoadTest
* \brief Example to show how to define templated load classes.
*
* \note The class must be instantiated, before the object factory can
* produce more objects of this class. Instantiate the specific
* derived classes with: "template class LoadTest<...>;" where required.
*/
template<class TClass>
class LoadTest : public LoadElement
{
FEM_CLASS(LoadTest,LoadElement)
public:
/**
* Default constructor
*/
LoadTest() {}
/**
* Some data that this load defines.
*/
TClass data;
virtual void Read( std::istream& f, void* info )
{
Superclass::Read(f,info);
}
void Write( std::ostream& f ) const
{
// call the parent's write function
Superclass::Write(f);
}
private:
/** Dummy static int that enables automatic registration
with FEMObjectFactory. */
static const int DummyCLID;
};
// Provide the templated code for CLID function, that is
// otherwise generated automaticly with FEM_CLASS_REGISTER
// macro.
template<class TClass>
int LoadTest<TClass>::CLID(void)
{
static const int CLID_ = FEMOF::Register( LoadTest::NewB, (std::string("LoadTest(")
+typeid(TClass).name()+")").c_str());
return CLID_;
}
// Make sure that the class is registered with FEMObjectFactory
// by calling CLID() static member function each time the class
// is instantiated for a specific template parameter TClass.
template<class TClass>
const int LoadTest<TClass>::DummyCLID=LoadTest<TClass>::CLID();
}} // end namespace itk::fem
#endif // #ifndef __itkFEMLoadTest_h
|