#include <string>
#include <list>
#include <openhbci/pointer.h>
#include <openhbci/user.h>
Go to the source code of this file.
|
|
|
|
|
Callback function for list_HBCI_Customer_foreach. |
|
|
|
Returns the customer id assigned to this Customer by the Bank. The customer ID that identifies this customer to his bank. Usually this string is assigned to the customer by the bank.
|
|
Returns the name of this customer. Returns the name of the customer, i.e. the role this customer plays. You can choose this name as you like, e.g. "secretary", "private" or whatever you prefer. This member makes it easier for you to distinguish this customers from others, since the raw customer id is quite cryptic in most cases.
|
|
Sets the name of this customer. Sets the name of this customer, i.e. the role this customer plays. You can set this to any arbitrary string you consider helpful.
|
|
Returns a pointer to the User this customer belongs to.
|
|
|
|
|
|
|
|
Traverses the list, calling the callback function 'func' on each list element. Traversal will stop when 'func' returns a non-NULL value, and the routine will return with that value. Otherwise the routine will return NULL.
|
|
|
|
|
|
|
|
|
|
|