Hi,
I am rewriting a legacy application that writes configuration options as an INI file.
The INI file has got to stay (so, please do not talk about property files or XML files)
Now : the particularities :
1) The file structure changes quite often, from one version to the other
2) I've got to maintain file version as all users are not on the same version.
The aim of the rewrite operation is :
- to make it easy to manage upgrades,
- to make easy to manage versions,
- to make it easy to add/remove items to the INI file
First thought of Visitor
pattern, but this does not fullfil my requierement.
Can anyone thing of a better design (or design pattern ) ?
Regards,