This website works better with JavaScript.
Home
Help
Register
Sign In
Thomas
/
libpEpAdapter
forked from
pEp.foundation/libpEpAdapter
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Test: PityTest - PityPerspective make model const, lets see...
LIB-11
heck
11 months ago
parent
1a766e6ece
commit
95234b8a2c
2 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
test/pitytest11/src/PityPerspective.cc
+2
-2
test/pitytest11/src/PityPerspective.hh
+ 1
- 1
test/pitytest11/src/PityPerspective.cc
View File
@ -5,7 +5,7 @@ namespace pEp {
namespace
PityTest11
{
bool
PityPerspective
:
:
debug_log_enabled
=
false
;
PityPerspective
:
:
PityPerspective
(
PityModel
&
model
)
:
model
{
model
}
PityPerspective
:
:
PityPerspective
(
const
PityModel
&
model
)
:
model
{
model
}
{
pEpLogClass
(
"
called
"
)
;
}
+ 2
- 2
test/pitytest11/src/PityPerspective.hh
View File
@ -13,10 +13,10 @@ namespace pEp {
class
PityPerspective
{
public
:
// Constructors
PityPerspective
(
PityModel
&
model
)
;
PityPerspective
(
const
PityModel
&
model
)
;
// Lets grant access to the whole model too
PityModel
&
model
;
const
PityModel
&
model
;
// Perspective
std
:
:
string
own_name
;
Write
Preview
Loading…
Cancel
Save