replace ::cast_dynamic() with relevant ActionManager::get_*_action() calls
[ardour.git] / tools / ctagsparse.py
1 #!/usr/bin/python
2 import csv
3
4 # ctags -o /tmp/atag.csv --fields=+afiKkmnsSzt libs/ardour/ardour/export_format_specification.h 
5
6 f = open('/tmp/atag.csv', 'rb')
7 reader = csv.reader(f, delimiter='\t')
8 for row in reader:
9     if len(row) > 7:
10         print row[7]