16 lines
267 B
C
16 lines
267 B
C
|
#ifndef ELEMENTCLASSES_H
|
||
|
#define ELEMENTCLASSES_H
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
#include "SimulationData.h"
|
||
|
#include "Element.h"
|
||
|
|
||
|
#define ELEMENT_NUMBERS_ENUMERATE
|
||
|
#include "ElementNumbers.h"
|
||
|
#undef ELEMENT_NUMBERS_ENUMERATE
|
||
|
|
||
|
std::vector<Element> const &GetElements();
|
||
|
|
||
|
#endif
|