MayaFlux 0.3.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 303 of file ClangInterpreter.cpp.

304{
305 std::vector<std::string> symbols;
306 for (const auto& pair : m_impl->symbol_table) {
307 symbols.push_back(pair.first);
308 }
309 return symbols;
310}
std::unique_ptr< Impl > m_impl
Internal implementation details.

References m_impl.