26 lines
250 B
C++
26 lines
250 B
C++
#pragma once
|
|
|
|
namespace fesa::core {
|
|
|
|
struct NodeId {
|
|
int value;
|
|
};
|
|
|
|
struct ElementId {
|
|
int value;
|
|
};
|
|
|
|
struct MaterialId {
|
|
int value;
|
|
};
|
|
|
|
struct PropertyId {
|
|
int value;
|
|
};
|
|
|
|
struct StepId {
|
|
int value;
|
|
};
|
|
|
|
} // namespace fesa::core
|