top
|
up
|
prev
|
next
ProjectUpdated Struct
Definition at line
48
of
MessageBody.hpp
Constructors
ProjectUpdated
()
ProjectUpdated
(
JsonValue
* value)
Member Functions
std::unique_ptr<
JsonValue
>
ToJson
()
const
Member Variables
std::string
error
std::string
info
bool
ok
std::string
projectId
Constructor Details
ProjectUpdated Constructor
ProjectUpdated::ProjectUpdated()
Definition at line
102
of
MessageBody.cpp
:
102
:
projectId
(
)
,
ok
(
)
,
info
(
)
,
error
(
)
103
{
104
}
Declaration at line
50
of
MessageBody.hpp
ProjectUpdated Constructor
ProjectUpdated::ProjectUpdated(
JsonValue
* value)
Definition at line
120
of
MessageBody.cpp
:
121
{
122
sngjson
::
json
::
FromJson
(
value
,
"projectId"
,
projectId
)
;
123
sngjson
::
json
::
FromJson
(
value
,
"ok"
,
ok
)
;
124
sngjson
::
json
::
FromJson
(
value
,
"info"
,
info
)
;
125
sngjson
::
json
::
FromJson
(
value
,
"error"
,
error
)
;
126
}
Declaration at line
51
of
MessageBody.hpp
Member Function Details
ToJson Member Function
std::unique_ptr<
JsonValue
> ProjectUpdated::ToJson()
const
Definition at line
106
of
MessageBody.cpp
Declaration at line
52
of
MessageBody.hpp
top
|
up
|
prev
|
next