Example #1
0
 bool check_sign(long int n, long int s, Bank& bank)
 {
     bool flg = bank.request_from_store(n, s);
     if (flg)
     {
         return true;
     }
     else
         return false;
 }