Itasca C++ Interface
Loading...
Searching...
No Matches
iudvector.h
Go to the documentation of this file.
1#pragma once
2// iudvector.h
3
6
7#include "iudtype.h"
8
9namespace itascaxd {
13 class IUDVector : public IUDType<DVect> {
14 public:
16 inline static const TType type_ = 0x4c815bd3;
18 IUDVector *getNext() override =0;
20 const IUDVector *getNext() const override =0;
21 };
22} // namespace itascaxd
23// EoF
Interface to data values of different types associated with position in space, as user-defined data.
Definition iudtype.h:23
Interface to user-defined vector data Implemented as an IUDType<DVect>
Definition iudvector.h:13
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition iudvector.h:16
const IUDVector * getNext() const override=0
Returns the next IUDVector in whatever container it is stored in.
IUDVector * getNext() override=0
Returns the next IUDVector in whatever container it is stored in.
uint32 TType
class type indicator
Definition basedef.h:46
IUDType is a template interface class, for values of different types that can be used as user-defined...
Itasca Library standard namespace, specific to 2D or 3D.
Definition icontactmodule.h:4