9 lines
223 B
C++
9 lines
223 B
C++
|
|
#include "NodeVisitor.h"
|
||
|
|
#include "sqlast/SelectList.h"
|
||
|
|
|
||
|
|
void sqlast::NodeVisitor::VisitSelectListItems(SelectList &selectList)
|
||
|
|
{
|
||
|
|
for (int idx = 0; idx < selectList.Count(); ++idx)
|
||
|
|
Visit(selectList.Get(idx));
|
||
|
|
}
|