Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kirill Terekhov
INMOST
Commits
46969853
Commit
46969853
authored
Jan 15, 2018
by
Kirill Terekhov
Browse files
Update
parent
fd076755
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/Headers/inmost_variable.h
View file @
46969853
...
...
@@ -648,8 +648,8 @@ namespace INMOST
public:
ternary_custom_variable
(
const
shell_dynamic_variable
<
typename
A
::
Var
,
A
>
&
pcond
,
const
shell_dynamic_variable
<
typename
B
::
Var
,
B
>
&
pleft
,
const
shell_dynamic_variable
<
typename
C
::
Var
,
C
>
&
pright
)
:
Cond
(
pcond
),
Left
(
pleft
),
Right
(
pright
)
{}
ternary_custom_variable
(
const
ternary_custom_variable
&
other
)
:
Left
(
other
.
Left
),
Right
(
other
.
Right
)
{}
ternary_custom_variable
&
operator
=
(
ternary_custom_variable
const
&
other
)
{
Left
=
other
.
Left
;
Right
=
other
.
Right
;
return
*
this
;}
ternary_custom_variable
(
const
ternary_custom_variable
&
other
)
:
Cond
(
other
.
Cond
),
Left
(
other
.
Left
),
Right
(
other
.
Right
)
{}
ternary_custom_variable
&
operator
=
(
ternary_custom_variable
const
&
other
)
{
Cond
=
other
.
Cond
;
Left
=
other
.
Left
;
Right
=
other
.
Right
;
return
*
this
;}
INMOST_DATA_REAL_TYPE
Value
(
const
Storage
&
e
)
const
{
return
(
*
this
)[
e
].
GetValue
();}
multivar_expression
Variable
(
const
Storage
&
e
)
const
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment