|
| void * | operator new (size_t size) |
| |
| void | free () |
| |
| void | operator delete (void *acc, size_t size) |
| |
|
| MOCK_METHOD0 (begin_edit, void()) |
| |
|
| MOCK_METHOD0 (commit_edit, void()) |
| |
|
| MOCK_CONST_METHOD0 (get_book, QofBook *()) |
| |
|
| MOCK_CONST_METHOD0 (get_commodity, gnc_commodity *()) |
| |
|
| MOCK_CONST_METHOD2 (for_each_transaction, gint(TransactionCallback, void *)) |
| |
|
| MOCK_CONST_METHOD0 (xaccAccountGetSplitList, SplitList *()) |
| |
|
| MOCK_CONST_METHOD0 (xaccAccountGetSplits, std::vector< Split * > &()) |
| |
|
| MOCK_METHOD2 (find_account, Account *(const char *, const char *)) |
| |
|
| MOCK_METHOD3 (add_account, void(const char *, const char *, Account *)) |
| |
|
| MOCK_METHOD1 (find_account_bayes, Account *(std::vector< const char * > &)) |
| |
|
| MOCK_METHOD2 (add_account_bayes, void(std::vector< const char * > &, Account *)) |
| |
Definition at line 25 of file gmock-Account.h.
◆ MockAccount()
| MockAccount::MockAccount |
( |
| ) |
|
|
inline |
◆ ~MockAccount()
| MockAccount::~MockAccount |
( |
| ) |
|
|
inlineprotected |
◆ free()
| void MockAccount::free |
( |
| ) |
|
|
inline |
◆ operator delete()
| void MockAccount::operator delete |
( |
void * |
acc, |
|
|
size_t |
size |
|
) |
| |
|
inline |
Definition at line 42 of file gmock-Account.h.
43 {
44 mock_g_object_unref(acc, size);
45 }
◆ operator new()
| void * MockAccount::operator new |
( |
size_t |
size | ) |
|
|
inline |
Definition at line 32 of file gmock-Account.h.
33 {
34 return mock_g_object_new (GNC_TYPE_MOCKACCOUNT, NULL, size);
35 }
The documentation for this class was generated from the following file: