/usr/include/aqbanking5/aqbankingpp/accountstatus.hpp is in libaqbanking34-dev 5.4.3beta-2+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | /***************************************************************************
$RCSfile$
-------------------
begin : Mon March 2 2011
copyright : (C) 2011 by Christian Stimming
email : christian@cstimming.de
***************************************************************************
* This file is part of the project "AqBanking". *
* Please see toplevel file COPYING of that project for license details. *
***************************************************************************/
#ifndef AB_ACCOUNTSTATUS_HPP
#define AB_ACCOUNTSTATUS_HPP
#include <aqbanking/accstatus.h>
#include <aqbankingpp/cxxwrap.hpp>
#include <aqbankingpp/balance.hpp>
#include <aqbankingpp/time.hpp>
#include <aqbankingpp/value.hpp>
namespace AB
{
/** A wrapper class around the AB_ACCOUNT_STATUS type */
class AccountStatus
{
public:
typedef AB_ACCOUNT_STATUS wrapped_type;
private:
wrapped_type* m_ptr;
public:
AB_CXXWRAP_CONSTRUCTOR0(AccountStatus, AB_AccountStatus);
AB_CXXWRAP_CONSTRUCTORS(AccountStatus, AB_AccountStatus);
Time AB_CXXWRAP_GET0_CONST(getTime, AB_AccountStatus_GetTime);
Value AB_CXXWRAP_GET0_CONST(getBankLine, AB_AccountStatus_GetBankLine);
Value AB_CXXWRAP_GET0_CONST(getDisposable, AB_AccountStatus_GetDisposable);
Value AB_CXXWRAP_GET0_CONST(getDisposed, AB_AccountStatus_GetDisposed);
Balance AB_CXXWRAP_GET0_CONST(getBookedBalance, AB_AccountStatus_GetBookedBalance);
Balance AB_CXXWRAP_GET0_CONST(getNotedBalance, AB_AccountStatus_GetNotedBalance);
};
} // END namespace AB
#endif // AB_ACCOUNTSTATUS_HPP
|