formatters.hpp
Go to the documentation of this file.
1 #ifndef FORMATTERS_HPP
2 #define FORMATTERS_HPP
3 
4 #include <string>
5 
6 namespace julian {
7 namespace formatter {
8 
16  std::string currency(double);
17  std::string percentage(double);
18 } // namespace formatter
19 } // namespace julian
20 #endif
Definition: cadHoliday.cpp:3
std::string percentage(double x)
Function converts double to percentage.
Definition: formatters.cpp:59
std::string currency(double x)
Function converts double to money value.
Definition: formatters.cpp:16