コード例 #1
0
ファイル: User.cpp プロジェクト: Mad-Otter/creepy-tanuki
bool Buyer::buyProduct(Product& product, int quantity){
  if(true) { //Payment system here
    product.buy(this, quantity);
    return true;
  }else{
    return false; //error payment
  }
}