top
|
up
|
prev
|
next
SymbolLocation Class
Definition at line
109
of
Symbol.hpp
Constructors
SymbolLocation
()
SymbolLocation
(
const
boost::uuids::uuid& moduleId_, int32_t fileIndex_, int32_t line_, int32_t scol_, int32_t ecol_)
Member Variables
int32_t
ecol
int32_t
fileIndex
int32_t
line
boost::uuids::uuid
moduleId
int32_t
scol
Constructor Details
SymbolLocation Constructor
cmajor::symbols::SymbolLocation::SymbolLocation()
Definition at line
112
of
Symbol.hpp
:
112
:
moduleId
(
boost
::
uuids
::
nil_uuid
(
)
)
,
fileIndex
(
0
)
,
line
(
0
)
,
scol
(
0
)
,
ecol
(
0
)
113
{
114
}
SymbolLocation Constructor
cmajor::symbols::SymbolLocation::SymbolLocation(
const
boost::uuids::uuid& moduleId_, int32_t fileIndex_, int32_t line_, int32_t scol_, int32_t ecol_)
Definition at line
115
of
Symbol.hpp
:
115
:
116
moduleId
(
moduleId_
)
,
fileIndex
(
fileIndex_
)
,
line
(
line_
)
,
scol
(
scol_
)
,
ecol
(
ecol_
)
117
{
118
}
top
|
up
|
prev
|
next