Hi Jules,
it’s me again with my “local” problems.
There is a handful of really useful functions in Time class. But the problem is that functions like this
const String Time::getMonthName ( const bool threeLetterVersion ) const
are not suitable for non-english “speaking” apps. Would that be possible to make these functions returning month, day, or other name virtual so that I could make my own Time class overriding these methods to return localised Month/Day names?
(It might be better if the class read the names from some local computer settings and returning the string according to it, but I think it’s not worth the effort. And also I am not sure if all Mac/Nix/Win support it, so… )
And one smaller thing, the parameter (const bool threeLetterVersion) could be defined (const bool threeLetterVersion=false), for the lazy people like me ?
Thanks.
Y.