Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
iudtensor.h
Go to the documentation of this file.
1 #pragma once
2 // iudtensor.h
3 
8 #include "iudtype.h"
9 
10 namespace itascaxd {
13 
15 
17  class IUDTensor : public IUDType<SymTensor> {
18  public:
20  inline static const TType type_ = 0x4c815bd5;
22  virtual IUDTensor *getNext()=0;
24  virtual const IUDTensor *getNext() const=0;
25  };
27 } // namespace itascaxd
28 // EoF
virtual IUDTensor * getNext()=0
Returns the next IUDTensor in whatever container it is stored in.
unsigned int TType
class type indicator
Definition: basedef.h:41
Itasca Library standard namespace, specific to 2D or 3D.
Definition: icontactmodule.h:4
Interface to data values of different types associated with position in space, as user-defined data.
Definition: iudtype.h:23
Interface to user-defined tensor data.
Definition: iudtensor.h:17
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition: iudtensor.h:20
IUDType is a template interface class, for values of different types that can be used as user-defined...