MayaFlux 0.4.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 337 of file ClangInterpreter.cpp.

338{
339 std::vector<std::string> symbols;
340 for (const auto& pair : m_impl->symbol_table) {
341 symbols.push_back(pair.first);
342 }
343 return symbols;
344}
std::unique_ptr< Impl > m_impl
Internal implementation details.

References m_impl.