Account.c to Account.cpp

Since Account.c is now Account.cpp, the function signatures look a bit
different internally. The tests rely on function signatures in error
messages. Instead of trying to figure out what the exact
function signature might be, I use a substring matching strategy to
ensure that the correct error was issued.
This commit is contained in:
lmat
2017-08-14 14:32:45 -04:00
parent 318f7ebc4f
commit eb6c741bf9
20 changed files with 278 additions and 136 deletions

View File

@@ -37,6 +37,10 @@
#ifndef XACC_POLICY_H
#define XACC_POLICY_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct gncpolicy_s GNCPolicy;
/** Valid Policy List
@@ -83,6 +87,10 @@ GNCPolicy *xaccGetFIFOPolicy (void);
*/
GNCPolicy *xaccGetLIFOPolicy (void);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* XACC_POLICY_H */
/** @} */
/** @} */