#!/bin/sh
# get options categories
# 
# Warning: This script should only be launched automatically

fileList=`find . -name "*pp" | xargs  grep -l -E "public[' ''\t''\n']+ParametrizableObject"`

# get options categories names
for i in `echo $fileList`
do
  `pwd`/scripts/getOptions.pl $i
done
