top
|
up
|
prev
|
next
MDLong Class
Definition at line
51
of
Metadata.hpp
Constructors
MDLong
(int64_t value_)
Member Functions
void
Write
(CodeFormatter& formatter)
Member Variables
int64_t
value
Constructor Details
MDLong Constructor
cmsxi::MDLong::MDLong(int64_t value_)
Definition at line
36
of
Metadata.cpp
:
36
:
MDItem
(
MDItemKind
::
long_
)
,
value
(
value_
)
37
{
38
}
Declaration at line
54
of
Metadata.hpp
Member Function Details
Write Member Function
void
cmsxi::MDLong::Write(CodeFormatter& formatter)
Definition at line
40
of
Metadata.cpp
:
41
{
42
formatter
.
Write
(
std
::
to_string
(
value
)
)
;
43
}
Calls:
cmsxi::MDLong::Write
Called by:
cmsxi::MDLong::Write
top
|
up
|
prev
|
next