23 lines
351 B
C++
23 lines
351 B
C++
#pragma once
|
|
|
|
#include "fesa/Core/Types.hpp"
|
|
#include "fesa/ModuleInfo.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace fesa::module {
|
|
|
|
inline constexpr std::string_view kProperty = "Property";
|
|
|
|
} // namespace fesa::module
|
|
|
|
namespace fesa {
|
|
|
|
struct ShellSection {
|
|
std::string element_set;
|
|
std::string material;
|
|
Real thickness = 0.0;
|
|
};
|
|
|
|
} // namespace fesa
|