Rheolef  7.2
an efficient C++ finite element environment
basis_get.h
Go to the documentation of this file.
1 #ifndef _RHEOLEF_BASIS_GET_H
2 #define _RHEOLEF_BASIS_GET_H
23 //
24 // basis name: parser utility
25 //
26 #include <cstring>
27 #include "rheolef/basis_option.h"
28 
29 namespace rheolef {
30 
32  family_index_option_type (std::string f="", size_t k=0, basis_option o=basis_option())
33  : family(f), index(k), option(o) {}
34  std::string family;
35  size_t index;
37 };
38 
39 void basis_parse_from_string (const std::string& str, family_index_option_type& fio);
40 
41 } // namespace rheolef
42 #endif // _RHEOLEF_BASIS_GET_H
see the basis_option page for the full documentation
Definition: basis_option.h:93
This file is part of Rheolef.
void basis_parse_from_string(const std::string &str, family_index_option_type &fio)
Definition: basis_get.cc:142
Definition: cavity_dg.h:29
family_index_option_type(std::string f="", size_t k=0, basis_option o=basis_option())
Definition: basis_get.h:32