12 lines
242 B
C++
12 lines
242 B
C++
#include <fesa/model/property.hpp>
|
|
|
|
int main()
|
|
{
|
|
const fesa::model::Property property{
|
|
fesa::core::PropertyId{2},
|
|
"section",
|
|
fesa::core::MaterialId{3}
|
|
};
|
|
return property.material_id().value == 3 ? 0 : 1;
|
|
}
|