/usr/include/aqbanking5/aqbanking/jobloadcellphone.h 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | /***************************************************************************
begin : Mon Mar 01 2004
copyright : (C) 2004-2013 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* This file is part of the project "AqBanking". *
* Please see toplevel file COPYING of that project for license details. *
***************************************************************************/
#ifndef AQBANKING_JOBLOADCELLPHONE_H
#define AQBANKING_JOBLOADCELLPHONE_H
#include <aqbanking/job.h>
#include <aqbanking/cellphoneproduct.h>
#include <aqbanking/value.h>
/** @addtogroup G_AB_JOBS_LOADCELLPHONE
*
*/
/*@{*/
#ifdef __cplusplus
extern "C" {
#endif
/** @name Constructor */
/*@{*/
AQBANKING_API AB_JOB *AB_JobLoadCellPhone_new(AB_ACCOUNT *a);
/*@}*/
/** @name Job Arguments */
/*@{*/
AQBANKING_API void AB_JobLoadCellPhone_SetCellPhoneProduct(AB_JOB *j,
const AB_CELLPHONE_PRODUCT *p);
AQBANKING_API const AB_CELLPHONE_PRODUCT *AB_JobLoadCellPhone_GetCellPhoneProduct(const AB_JOB *j);
AQBANKING_API void AB_JobLoadCellPhone_SetPhoneNumber(AB_JOB *j, const char *n);
AQBANKING_API const char *AB_JobLoadCellPhone_GetPhoneNumber(const AB_JOB *j);
AQBANKING_API void AB_JobLoadCellPhone_SetValue(AB_JOB *j, const AB_VALUE *v);
AQBANKING_API const AB_VALUE *AB_JobLoadCellPhone_GetValue(const AB_JOB *j);
/*@}*/
/** @name Job Parameters */
/*@{*/
/** Returns a list of supported cell phone products (prepaid cards)
* The jobs remains the owner of the object returned (if any)
*/
AQBANKING_API const AB_CELLPHONE_PRODUCT_LIST*
AB_JobLoadCellPhone_GetCellPhoneProductList(const AB_JOB *j);
/*@}*/
#ifdef __cplusplus
}
#endif
/*@}*/ /* addtogroup */
#endif
|