MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_defined_symbols()

std::vector< std::string > Lila::ClangInterpreter::get_defined_symbols ( )

Gets a list of all defined symbols.

Returns
Vector of symbol names

Definition at line 250 of file ClangInterpreter.cpp.

251{
252 std::vector<std::string> symbols;
253 for (const auto& pair : m_impl->symbol_table) {
254 symbols.push_back(pair.first);
255 }
256 return symbols;
257}
std::unique_ptr< Impl > m_impl
Internal implementation details.

References m_impl.