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 319 of file ClangInterpreter.cpp.

320{
321 std::vector<std::string> symbols;
322 for (const auto& pair : m_impl->symbol_table) {
323 symbols.push_back(pair.first);
324 }
325 return symbols;
326}
std::unique_ptr< Impl > m_impl
Internal implementation details.

References m_impl.