Definition at line 962 of file invoice.h.
OSB_LIB::SubsItem::SubsItem | ( | const Section & | section, | |
const SubsCharge * | sc | |||
) | [inline] |
virtual void OSB_LIB::SubsItem::writeXml | ( | BillingXmlBase & | bXml | ) | const [inline, virtual] |
Function to call the appropriate xml writer for each specific invoice item.
This function is call by BillingXmlBase::writeInvoice when it browses through all invoice item and call billingXml funtion for each of them.
Below is the sample code on how each invoice item writeXml call it's xml writer function.
virtual void UsagerecordItem::writeXml(BillingXmlBase& bXml) const { dynamic_cast<BillingXml&>(bXml).writeUsagerecordItem(*this); }
bXml | Xml writer to use. |
Implements OSB_LIB::InvoiceItem.