diff options
Diffstat (limited to 'include/countries.hpp')
| -rw-r--r-- | include/countries.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/countries.hpp b/include/countries.hpp index 0e3704f..5364eff 100644 --- a/include/countries.hpp +++ b/include/countries.hpp @@ -22,6 +22,7 @@ typedef struct { char* country_code; bool is_EU; + bool enabled; // true = can be used as operating country. time_t (*get_default_invoice_expire_duration)(); @@ -41,6 +42,7 @@ namespace country { time_t get_default_invoice_expire_duration(char* country_code); bool is_EU(char* country_code); + bool is_enabled(char* country_code); bool tax_is_implemented(char* country_code); void fill_tax_report_with_categories(char* country_code, tax_report* report); bool add_billing_item_to_tax_report(char* country_code, tax_report* report, invoice* inv, billing_item* item); |
