⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 invoice.h

📁 《Big C++ 》Third Edition电子书和代码全集-Part1
💻 H
字号:
#ifndef INVOICE_H
#define INVOICE_H

#include <vector>

using namespace std;

#include "item.h"
#include "invoiceprinter.h"
#include "itemiterator.h"

/**
   Describes an invoice that bills for a sequence of items.
*/
class Invoice
{
public:
   /**
      Adds an item to this invoice.
      @param it the item that the customer ordered
   */
   void add(Item* it);
   /**
      Prints the invoice.
   */
   void print(InvoicePrinter& printer);
   /**
      Creates an iterator through the items of this invoice.
      @return the iterator
   */
   ItemIterator create_iterator();
private:
   vector<Item*> items;
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -