Itasca C++ Interface
Loading...
Searching...
No Matches
iudscalar.h
Go to the documentation of this file.
1#pragma once
2// iudscalar.h
3
8#include "iudtype.h"
9
10namespace itascaxd {
13
15
17 class IUDScalar : public IUDType<double> {
18 public:
20 inline static const TType type_ = 0x4c815bd7;
22 IUDScalar *getNext() override =0;
24 const IUDScalar *getNext() const override =0;
25 };
27} // namespace itascaxd
28// EoF
Interface to user-defined scalar data.
Definition iudscalar.h:17
const IUDScalar * getNext() const override=0
Returns the next IUDScalar in whatever container it is stored in.
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition iudscalar.h:20
IUDScalar * getNext() override=0
Returns the next IUDScalar in whatever container it is stored in.
Interface to data values of different types associated with position in space, as user-defined data.
Definition iudtype.h:23
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