Subversion Repositories currency_converter

Rev

Blame | Last modification | View Log | RSS feed

  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. #include "CurConv.h"
  5.  
  6. using namespace std;
  7.  
  8. int main(int argc, char *argv[])
  9. {
  10.     printf("10 USD = %f EUR\n", ConvertA(10, "USD", "EUR", 1*60*60, CONVERT_FALLBACK_TO_CACHE, 0));
  11.     system("PAUSE");
  12.     return EXIT_SUCCESS;
  13. }
  14.