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
e3d93f0b
Commit
e3d93f0b
authored
Feb 24, 2003
by
lw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
67cdae6b
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
12 deletions
+14
-12
wb/lib/wb/src/wb_merep.cpp
wb/lib/wb/src/wb_merep.cpp
+2
-0
wb/lib/wb/src/wb_mvrep.cpp
wb/lib/wb/src/wb_mvrep.cpp
+1
-0
wb/lib/wb/src/wb_vrepdb.cpp
wb/lib/wb/src/wb_vrepdb.cpp
+3
-3
wb/lib/wb/src/wb_vrepdb.h
wb/lib/wb/src/wb_vrepdb.h
+4
-4
wb/lib/wb/src/wb_vrepdbs.cpp
wb/lib/wb/src/wb_vrepdbs.cpp
+4
-4
wb/lib/wb/src/wb_vrepwbl.h
wb/lib/wb/src/wb_vrepwbl.h
+0
-1
No files found.
wb/lib/wb/src/wb_merep.cpp
View file @
e3d93f0b
#include <iostream>
#include "wb_merep.h"
#include "wb_cdrep.h"
#include "wb_bdrep.h"
#include "wb_erep.h"
#include "wb_tdrep.h"
#include "wb_attrname.h"
...
...
wb/lib/wb/src/wb_mvrep.cpp
View file @
e3d93f0b
#include "wb_mvrep.h"
#include "wb_tdrep.h"
#include "wb_cdrep.h"
wb_cdrep
*
wb_mvrep
::
cdrep
(
pwr_tCid
cid
)
{
...
...
wb/lib/wb/src/wb_vrepdb.cpp
View file @
e3d93f0b
...
...
@@ -201,7 +201,7 @@ bool wb_vrepdb::writeAttribute(pwr_tStatus *sts, wb_orep *o, pwr_eBix bix, unsig
return
true
;
}
void
*
wb_vrepdb
::
readAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
)
void
*
wb_vrepdb
::
readAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
)
{
// ob_k obk(o->oid(), bix);
//ob_d obd;
...
...
@@ -224,12 +224,12 @@ void *wb_vrepdb::readAttribute(pwr_tStatus *sts, wb_orep *o, cdh_eBix bix, unsig
return
0
;
}
void
*
wb_vrepdb
::
readBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
void
*
p
)
void
*
wb_vrepdb
::
readBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
void
*
p
)
{
return
0
;
}
bool
wb_vrepdb
::
writeBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
void
*
p
)
bool
wb_vrepdb
::
writeBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
void
*
p
)
{
return
true
;
}
...
...
wb/lib/wb/src/wb_vrepdb.h
View file @
e3d93f0b
...
...
@@ -193,13 +193,13 @@ public:
virtual
bool
commit
(
pwr_tStatus
*
sts
);
virtual
bool
abort
(
pwr_tStatus
*
sts
);
virtual
bool
writeAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
);
virtual
bool
writeAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
);
virtual
void
*
readAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
);
virtual
void
*
readAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
);
virtual
void
*
readBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
void
*
p
);
virtual
void
*
readBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
void
*
p
);
virtual
bool
writeBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
void
*
p
);
virtual
bool
writeBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
void
*
p
);
virtual
wb_orep
*
ancestor
(
pwr_tStatus
*
sts
,
wb_orep
*
o
);
...
...
wb/lib/wb/src/wb_vrepdbs.cpp
View file @
e3d93f0b
...
...
@@ -164,13 +164,13 @@ bool wb_vrepdbs::abort(pwr_tStatus *sts)
return
true
;
}
bool
wb_vrepdbs
::
writeAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
)
bool
wb_vrepdbs
::
writeAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
)
{
*
sts
=
LDH__NYI
;
return
false
;
}
void
*
wb_vrepdbs
::
readAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
)
void
*
wb_vrepdbs
::
readAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
)
{
// note! must be compensated for offset !
*
sts
=
LDH__SUCCESS
;
...
...
@@ -200,7 +200,7 @@ void *wb_vrepdbs::readAttribute(pwr_tStatus *sts, wb_orep *o, cdh_eBix bix, unsi
return
(
void
*
)((
char
*
)
bp
+
offset
);
}
void
*
wb_vrepdbs
::
readBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
void
*
p
)
void
*
wb_vrepdbs
::
readBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
void
*
p
)
{
*
sts
=
LDH__SUCCESS
;
...
...
@@ -230,7 +230,7 @@ void *wb_vrepdbs::readBody(pwr_tStatus *sts, wb_orep *o, cdh_eBix bix, void *p)
return
bp
;
}
bool
wb_vrepdbs
::
writeBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh
_eBix
bix
,
void
*
p
)
bool
wb_vrepdbs
::
writeBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr
_eBix
bix
,
void
*
p
)
{
*
sts
=
LDH__NYI
;
return
false
;
...
...
wb/lib/wb/src/wb_vrepwbl.h
View file @
e3d93f0b
...
...
@@ -162,7 +162,6 @@ public:
virtual
void
*
readAttribute
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr_eBix
bix
,
unsigned
int
offset
,
unsigned
int
size
,
void
*
p
);
virtual
void
*
readBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
cdh_eBix
bix
,
void
*
p
)
{
return
0
;}
virtual
void
*
readBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr_eBix
bix
,
void
*
p
);
virtual
bool
writeBody
(
pwr_tStatus
*
sts
,
wb_orep
*
o
,
pwr_eBix
bix
,
void
*
p
)
{
return
false
;};
...
...
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