account: Add address property

This commit is contained in:
Evangelos Ribeiro Tzaras
2021-07-04 00:24:30 +02:00
committed by Evangelos Ribeiro Tzaras
parent dd3fbf646e
commit a638b64402
3 changed files with 53 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ struct _CallsAccountInterface
void (*go_online) (CallsAccount *self,
gboolean online);
const char *(*get_address) (CallsAccount *self);
};
/**
* CallsAccountState:
@@ -69,6 +70,7 @@ typedef enum {
void calls_account_go_online (CallsAccount *self,
gboolean online);
const char *calls_account_get_address (CallsAccount *self);
CallsAccountState calls_account_get_state (CallsAccount *self);
G_END_DECLS