top
|
up
|
prev
|
next
ProjectUpToDate Struct
Definition at line
37
of
MessageBody.hpp
Constructors
ProjectUpToDate
()
ProjectUpToDate
(
JsonValue
* value)
Member Functions
std::unique_ptr<
JsonValue
>
ToJson
()
const
Member Variables
std::string
error
std::string
info
std::string
projectId
bool
upToDate
Constructor Details
ProjectUpToDate Constructor
ProjectUpToDate::ProjectUpToDate()
Definition at line
76
of
MessageBody.cpp
:
76
:
projectId
(
)
,
upToDate
(
)
,
info
(
)
,
error
(
)
77
{
78
}
Declaration at line
39
of
MessageBody.hpp
ProjectUpToDate Constructor
ProjectUpToDate::ProjectUpToDate(
JsonValue
* value)
Definition at line
94
of
MessageBody.cpp
:
95
{
96
sngjson
::
json
::
FromJson
(
value
,
"projectId"
,
projectId
)
;
97
sngjson
::
json
::
FromJson
(
value
,
"upToDate"
,
upToDate
)
;
98
sngjson
::
json
::
FromJson
(
value
,
"info"
,
info
)
;
99
sngjson
::
json
::
FromJson
(
value
,
"error"
,
error
)
;
100
}
Declaration at line
40
of
MessageBody.hpp
Member Function Details
ToJson Member Function
std::unique_ptr<
JsonValue
> ProjectUpToDate::ToJson()
const
Definition at line
80
of
MessageBody.cpp
Declaration at line
41
of
MessageBody.hpp
top
|
up
|
prev
|
next