| 123456789101112131415161718192021222324252627 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* main.cpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2026/01/13 17:54:18 by bchanot #+# #+# */
- /* Updated: 2026/01/16 19:33:09 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "BitcoinExchange.hpp"
- int main(int ac, char **av)
- {
- std::map<Date, float> Data;
- if (ac != 2) {
- std::cout << "Error : no file specified." << std::endl;
- throw std::exception();
- }
- ft_getcsv(Data);
- ft_process(av, Data);
- return 0;
- }
|