Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
532e423f
Commit
532e423f
authored
Aug 25, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bit type added to DigLowColor, DigWarning and DigError
parent
76f36274
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
248 additions
and
70 deletions
+248
-70
xtt/lib/ge/src/ge_dyn.cpp
xtt/lib/ge/src/ge_dyn.cpp
+238
-65
xtt/lib/ge/src/ge_dyn.h
xtt/lib/ge/src/ge_dyn.h
+10
-5
No files found.
xtt/lib/ge/src/ge_dyn.cpp
View file @
532e423f
This diff is collapsed.
Click to expand it.
xtt/lib/ge/src/ge_dyn.h
View file @
532e423f
/*
* Proview $Id: ge_dyn.h,v 1.3
6 2008-04-14 07:02:30
claes Exp $
* Proview $Id: ge_dyn.h,v 1.3
7 2008-08-25 11:17:48
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -870,11 +870,12 @@ class GeDigLowColor : public GeDynElem {
int
inverted
;
bool
first_scan
;
pwr_tBoolean
old_value
;
int
a_typeid
;
unsigned
int
bitmask
;
GeDigLowColor
(
GeDyn
*
e_dyn
)
:
GeDynElem
(
e_dyn
,
ge_mDynType_DigLowColor
,
(
ge_mActionType
)
0
,
ge_eDynPrio_DigLowColor
),
color
(
glow_eDrawType_Inherit
)
color
(
glow_eDrawType_Inherit
)
,
bitmask
(
0
)
{
strcpy
(
attribute
,
""
);}
GeDigLowColor
(
const
GeDigLowColor
&
x
)
:
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
),
color
(
x
.
color
)
...
...
@@ -939,9 +940,11 @@ class GeDigWarning : public GeDynElem {
int
inverted
;
bool
first_scan
;
pwr_tBoolean
old_value
;
int
a_typeid
;
unsigned
int
bitmask
;
GeDigWarning
(
GeDyn
*
e_dyn
)
:
GeDynElem
(
e_dyn
,
ge_mDynType_DigWarning
,
(
ge_mActionType
)
0
,
ge_eDynPrio_DigWarning
)
GeDynElem
(
e_dyn
,
ge_mDynType_DigWarning
,
(
ge_mActionType
)
0
,
ge_eDynPrio_DigWarning
)
,
bitmask
(
0
)
{
strcpy
(
attribute
,
""
);}
GeDigWarning
(
const
GeDigWarning
&
x
)
:
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
)
...
...
@@ -970,9 +973,11 @@ class GeDigError : public GeDynElem {
int
inverted
;
bool
first_scan
;
pwr_tBoolean
old_value
;
int
a_typeid
;
unsigned
int
bitmask
;
GeDigError
(
GeDyn
*
e_dyn
)
:
GeDynElem
(
e_dyn
,
ge_mDynType_DigError
,
(
ge_mActionType
)
0
,
ge_eDynPrio_DigError
)
GeDynElem
(
e_dyn
,
ge_mDynType_DigError
,
(
ge_mActionType
)
0
,
ge_eDynPrio_DigError
)
,
bitmask
(
0
)
{
strcpy
(
attribute
,
""
);}
GeDigError
(
const
GeDigError
&
x
)
:
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
)
...
...
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