MayaFlux 0.1.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 221 of file ClangInterpreter.cpp.

222{
223 std::vector<std::string> symbols;
224 for (const auto& pair : m_impl->symbol_table) {
225 symbols.push_back(pair.first);
226 }
227 return symbols;
228}
std::unique_ptr< Impl > m_impl
Internal implementation details.

References m_impl.