Loading [MathJax]/extensions/tex2jax.js
MAIA
bb96820c
Multiphysics at AIA
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
Variables
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
Typedefs
b
c
e
m
p
s
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
Enumerations
Enumerator
_
a
b
c
d
e
f
g
i
j
l
m
n
p
r
s
t
u
v
w
Related Functions
a
c
d
f
g
i
l
m
o
p
s
t
v
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
a
c
d
f
g
i
l
m
n
o
p
r
s
t
w
Variables
c
g
h
i
l
m
n
s
Typedefs
a
b
e
g
m
p
r
s
z
Enumerations
a
b
c
d
e
f
g
i
l
m
p
r
s
t
v
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
p
q
r
s
t
u
v
w
y
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Pages
Loading...
Searching...
No Matches
property.h
Go to the documentation of this file.
1
// Copyright (C) 2024 The m-AIA AUTHORS
2
//
3
// This file is part of m-AIA (https://git.rwth-aachen.de/aia/m-AIA/m-AIA)
4
//
5
// SPDX-License-Identifier: LGPL-3.0-only
6
7
#ifndef PROPERTY_H
8
#define PROPERTY_H
9
10
#include "
INCLUDE/maiatypes.h
"
11
#include "
enums.h
"
12
13
class
MProperty
{
14
public
:
15
MProperty
();
16
MProperty
(
MInt
size,
MString
propname,
MInt
Solver
,
MString
* value);
17
MProperty
(
MInt
size,
MString
propname,
MInt
Solver
,
MFloat
* value);
18
MProperty
(
MInt
size,
MString
propname,
MInt
Solver
,
MInt
* value);
19
MProperty
(
MInt
size,
MString
propname,
MInt
Solver
,
MBool
* value);
20
~MProperty
();
21
MInt
count
();
22
MInt
doesExist
();
23
MString
*
asString
();
24
MInt
*
asInt
();
25
MFloat
*
asFloat
();
26
MBool
*
asBool
();
27
VariableType
type
();
28
void
clear
();
29
30
MString
*
asString
(
MInt
index);
31
MInt
*
asInt
(
MInt
index);
32
MFloat
*
asFloat
(
MInt
index);
33
MBool
*
asBool
(
MInt
index);
34
VariableType
propertyType
;
35
MInt
elements
= -1;
36
MString
name
;
37
MInt
noAccesses
= 0;
38
MInt
noOldAccesses
= 0;
39
MInt
solverId
= -1;
40
MString
*
stringField
=
nullptr
;
41
MFloat
*
floatField
=
nullptr
;
42
MInt
*
intField
=
nullptr
;
43
MBool
*
boolField
=
nullptr
;
44
};
45
46
47
#endif
MProperty
Definition:
property.h:13
MProperty::propertyType
VariableType propertyType
Definition:
property.h:34
MProperty::elements
MInt elements
Definition:
property.h:35
MProperty::asFloat
MFloat * asFloat()
Definition:
property.cpp:204
MProperty::intField
MInt * intField
Definition:
property.h:42
MProperty::name
MString name
Definition:
property.h:36
MProperty::noAccesses
MInt noAccesses
Definition:
property.h:37
MProperty::type
VariableType type()
Definition:
property.cpp:110
MProperty::MProperty
MProperty()
Definition:
property.cpp:52
MProperty::asInt
MInt * asInt()
Definition:
property.cpp:174
MProperty::clear
void clear()
Definition:
property.cpp:17
MProperty::asBool
MBool * asBool()
Definition:
property.cpp:144
MProperty::stringField
MString * stringField
Definition:
property.h:40
MProperty::solverId
MInt solverId
Definition:
property.h:39
MProperty::doesExist
MInt doesExist()
MProperty::count
MInt count()
Definition:
property.cpp:112
MProperty::noOldAccesses
MInt noOldAccesses
Definition:
property.h:38
MProperty::floatField
MFloat * floatField
Definition:
property.h:41
MProperty::asString
MString * asString()
Definition:
property.cpp:114
MProperty::boolField
MBool * boolField
Definition:
property.h:43
MProperty::~MProperty
~MProperty()
Definition:
property.cpp:15
Solver
Parent class of all solvers This class is the base for all solvers. I.e. all solver class (e....
Definition:
solver.h:29
enums.h
VariableType
VariableType
Definition:
enums.h:269
maiatypes.h
MInt
int32_t MInt
Definition:
maiatypes.h:62
MString
std::basic_string< char > MString
Definition:
maiatypes.h:55
MFloat
double MFloat
Definition:
maiatypes.h:52
MBool
bool MBool
Definition:
maiatypes.h:58
home
gitlab-runner
scratch
builds
oxpnswJ6
1
aia
m-AIA
m-AIA
src
property.h
Generated on Sun Jun 16 2024 23:45:10 for MAIA by
1.9.5