ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkFEMLoadBase.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkFEMLoadBase_h
19 #define itkFEMLoadBase_h
20 
21 #include "itkFEMElementBase.h"
22 #include "itkFEMSolution.h"
23 #include "itkFEMPArray.h"
24 #include "ITKFEMExport.h"
25 
26 namespace itk
27 {
28 namespace fem
29 {
40 class ITKFEM_EXPORT Load : public FEMLightObject
41 {
42 public:
43 
45  typedef Load Self;
49 
51  itkTypeMacro(Load, FEMLightObject);
52 
54  typedef FEMPArray<Self> ArrayType;
55 
68  virtual void SetSolution(Solution::ConstPointer itkNotUsed(ptr)) { }
70  {
71  return ITK_NULLPTR;
72  }
73 
78  const Element * GetElement() const
79  {
80  return m_Element;
81  }
82 
87  void SetElement( const Element * el)
88  {
89  this->m_Element = el;
90  }
91 
92 protected:
93  virtual void PrintSelf(std::ostream& os, Indent indent) const ITK_OVERRIDE;
99 
100 
101 };
102 }
103 } // end namespace itk::fem
104 
105 #endif // #ifndef itkFEMLoadBase_h
SmartPointer< const Self > ConstPointer
FEMPArray< Self > ArrayType
Element::ConstPointer m_Element
const Element * GetElement() const
virtual void SetSolution(Solution::ConstPointer)
Provides functions to access the values of the solution vector.
FEMLightObject Superclass
Base class for all classes that define the FEM system.
virtual Solution::ConstPointer GetSolution()
SmartPointer< Self > Pointer
void SetElement(const Element *el)
Array for FEMP objects.
Definition: itkFEMPArray.h:40
Abstract base element class.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
General abstract load base class.