8#ifndef MATIOCPP_ELEMENT_TPP
9#define MATIOCPP_ELEMENT_TPP
17 std::cerr <<
"[matioCpp::Element::checkCompatibility] The variable type is not compatible with an Element." <<
std::endl;
23 std::cerr <<
"[matioCpp::Element::checkCompatibility] Cannot use a complex variable into a non-complex one." <<
std::endl;
34 std::cerr <<
"[matioCpp::Element::checkCompatibility] The value type is not convertible to " <<
35 get_type<T>::toString() <<
"." <<
std::endl <<
54 initializeVariable(
"unnamed_element",
66 initializeVariable(name,
78 initializeVariable(name,
135 operator()() = value;
Element allows having a 1x1 variable (like double, int,..) castable to a primitive type.
matioCpp::Span< element_type > toSpan()
Get this Vector as a Span.
typename std::allocator_traits< std::allocator< element_type > >::const_pointer const_pointer
The pointer type.
reference operator()()
Access the Element.
Element()
The const pointer type.
element_type & reference
Defines the type of the Element.
bool setName(const std::string &newName)
Change the name of the Variable.
Element< T > & operator=(const Element< T > &other)
Assignement operator (copy) from another Element.
typename std::allocator_traits< std::allocator< element_type > >::pointer pointer
The reference type.
typename get_type< T >::type element_type
Defines the type specified in the template.
std::remove_cv_t< element_type > value_type
Defines the type of the Element.
MultiDimensionalArray is a particular type of Variable specialized for multidimensional arrays of a g...
MultiDimensionalArray()
The const pointer type.
The matioCpp::Variable class is the equivalent of matvar_t in matio.
matioCpp::VariableType variableType() const
Get the VariableType.
matioCpp::Element< T > asElement()
Cast the variable as a Element.
bool initializeVariable(const std::string &name, const VariableType &variableType, const ValueType &valueType, matioCpp::Span< const size_t > dimensions, void *data)
Initialize the variable.
matioCpp::ValueType valueType() const
Get the ValueType.
MATIOCPP_CONSTEXPR Span< ElementType > make_span(ElementType *ptr, typename Span< ElementType >::index_type count)
VariableType
Define the type of variable.
ValueType
The list of types for an element of a certain variable type.
bool get_types_names_from_matvart(const matvar_t *input, std::string &classType, std::string &dataType)
Get the type names from the input pointer.
Utility metafunction to get the ValueType from a given primitive type.