#include <string>
Go to the source code of this file.
Namespaces | |
namespace | HBCI |
Typedefs | |
typedef HBCI::Value | HBCI_Value |
Functions | |
HBCI_Value * | HBCI_Value_new_double (double value, const char *currency) |
int | HBCI_Value_isValid (const HBCI_Value *v) |
double | HBCI_Value_getValue (const HBCI_Value *v) |
const char * | HBCI_Value_getCurrency (const HBCI_Value *v) |
char * | HBCI_Value_toReadableString (const HBCI_Value *v) |
|
|
|
Returns the currency of this value as ISO-4217 string.
|
|
Returns the amount of this value.
|
|
Check whether this value is an empty value, which occurs if it has been constructed by the default empty constructor. Returns true otherwise.
|
|
Construct a value by giving an amount and a currency.
|
|
Returns a user-readable string representation of this value. This has the format e.g. "1234.56 EUR".
|