I'm parsing files with date and time in it. Let's say i have the date and time in the following format:
2009/07/18 10:48:39 CET (value in txt-file)
This is in ET:
2009/07/18 4:48:39 ET (could also be the value i parsed)
Is there a solution to convert between the times/dates? Maybe boost?
Couldn't find helpful infos in the boost docs.
Let's say i want to from CET to ET or ET to EST or CET to EST in c++, what would you do?