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
f590594e
Commit
f590594e
authored
Jul 08, 2004
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Function to ignore oix in load file added
parent
7ee89885
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
wb/lib/wb/src/wb_vrepwbl.h
wb/lib/wb/src/wb_vrepwbl.h
+9
-1
No files found.
wb/lib/wb/src/wb_vrepwbl.h
View file @
f590594e
...
...
@@ -21,6 +21,7 @@ class wb_vrepwbl : public wb_vrep
wb_erep
*
m_erep
;
wb_merep
*
m_merep
;
unsigned
int
m_nRef
;
bool
m_ignore_oix
;
map
<
string
,
ref_wblnode
>
m_type_list
;
map
<
pwr_tTid
,
ref_wblnode
>
m_tid_list
;
...
...
@@ -36,7 +37,7 @@ class wb_vrepwbl : public wb_vrep
public:
wb_vrepwbl
(
wb_erep
*
erep
)
:
m_erep
(
erep
),
m_merep
(
erep
->
merep
()),
m_nRef
(
0
),
root_object
(
0
),
error_cnt
(
0
),
file_cnt
(
0
),
next_oix
(
0
),
volume_node
(
0
)
{}
m_erep
(
erep
),
m_merep
(
erep
->
merep
()),
m_nRef
(
0
),
m_ignore_oix
(
false
),
root_object
(
0
),
error_cnt
(
0
),
file_cnt
(
0
),
next_oix
(
0
),
volume_node
(
0
)
{}
wb_vrepwbl
(
wb_erep
*
erep
,
pwr_tVid
vid
)
:
wb_vrep
(
vid
),
m_erep
(
erep
),
m_merep
(
erep
->
merep
()),
m_nRef
(
0
),
root_object
(
0
),
error_cnt
(
0
),
file_cnt
(
0
),
next_oix
(
0
),
volume_node
(
0
)
{}
...
...
@@ -84,6 +85,7 @@ public:
ref_wblnode
findType
(
pwr_tTid
tid
);
int
nameToOid
(
const
char
*
name
,
pwr_tOid
*
oid
);
int
nameToAttrRef
(
const
char
*
name
,
pwr_sAttrRef
*
attrref
);
void
ignoreOix
()
{
m_ignore_oix
=
true
;}
int
error_cnt
;
int
file_cnt
;
...
...
@@ -206,3 +208,9 @@ public:
};
#endif
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