|
Flow123d
last_with_con_2.0.0-4-g42e6930
|
#include <accessors.hh>
Public Member Functions | |
| Enum () | |
| Enum (int v) | |
| operator int () const | |
| operator unsigned int () const | |
Private Attributes | |
| int | val_ |
Class that works as base type of all enum types. We need it to return integer from a Selection input without knowing exact enum type. This class contains int and is convertible to int.
Usage example:
// in some general read function that do not know BCTypeEnum
int bc_type_int = record.val<Enum>("bc_type_selection_key");
...
// outside of general function
enum { dirichlet, neumann, newton } BCTypeEnum;
BCTypeEnum bc_type = bc_typ_int;
Definition at line 98 of file accessors.hh.
|
inline |
Definition at line 100 of file accessors.hh.
|
inline |
Definition at line 101 of file accessors.hh.
|
inline |
Definition at line 102 of file accessors.hh.
|
inline |
Definition at line 103 of file accessors.hh.
|
private |
Definition at line 105 of file accessors.hh.
1.8.11