本文整理匯總了C++中Basket::addItem方法的典型用法代碼示例。如果您正苦於以下問題:C++ Basket::addItem方法的具體用法?C++ Basket::addItem怎麽用?C++ Basket::addItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Basket
的用法示例。
在下文中一共展示了Basket::addItem方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。
示例1: ThrowItemsToBasket
bool ThrowItemsToBasket(Basket& basket)
{
std::vector<Item> ret;
std::ifstream fin("./input/itemlist/input1.txt", std::ios::in);
while (!fin.eof())
{
std::string line;
std::getline(fin, line);
//if (!IsLegal(line)) continue;
std::string item_name;
unsigned int item_count;
unsigned int item_price;
bool is_imported = false;
if (GetItemProperties(line, item_name, item_count, item_price, is_imported))
{
Item item(item_name, item_price, is_imported);
basket.addItem(item, item_count);
}
}
return true;
}