// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * // * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) * // ************************************************************************** #ifndef UTIL_H_INCLUDED #define UTIL_H_INCLUDED #include #include #include namespace zen { std::wstring filesizeToShortString(UInt64 filesize); std::wstring remainingTimeToShortString(double timeInSec); std::wstring percentageToShortString(double fraction); //within [0, 1] template std::wstring toStringSep(NumberType number); //convert number to std::wstring including thousands separator std::wstring utcToLocalTimeString(Int64 utcTime); //throw std::runtime_error //--------------- inline impelementation ------------------------------------------- namespace ffs_Impl { std::wstring includeNumberSeparator(const std::wstring& number); } template inline std::wstring toStringSep(NumberType number) { return ffs_Impl::includeNumberSeparator(zen::toString(number)); } } #endif // UTIL_H_INCLUDED