To run the rename script, python must be installed on your system. 

Once python is installed, the following line will run the script:

Windows:
python namereplace.py --dict=producersdkdict.txt --word-chars=[\w.] --do-edits mysdkapp *.cpp *.h

Unix:
python namereplace.py --dict=producersdkdict.txt --word-chars='[\w.]' --do-edits mysdkapp '*.cpp' '*.h'

- namereplace.py is the python script in this directory.
- --dict=producersdkdict.txt is the rename dictionary provided in this directory.  
- --do-edits is the directory of the sdk application you would like renamed, 
including the extensions of the files you would like renamed (usually *.cpp and *.h).


