This file is indexed.

/usr/include/aqbanking5/aqbanking/ab_accountqueue.h is in libaqbanking-dev 5.7.8-1.

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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**********************************************************
 * This file has been automatically created by "typemaker2"
 * from the file "ab_accountqueue.xml".
 * Please do not edit this file, all changes will be lost.
 * Better edit the mentioned source file instead.
 **********************************************************/

#ifndef AB_ACCOUNTQUEUE_H
#define AB_ACCOUNTQUEUE_H


#ifdef __cplusplus
extern "C" {
#endif

/** @page P_AB_ACCOUNTQUEUE Structure AB_ACCOUNTQUEUE
<p>This page describes the properties of AB_ACCOUNTQUEUE.</p>



<h1>AB_ACCOUNTQUEUE</h1>



@anchor AB_ACCOUNTQUEUE_account
<h2>account</h2>

<p>Set this property with @ref AB_AccountQueue_SetAccount(), get it with @ref AB_AccountQueue_GetAccount().</p>


@anchor AB_ACCOUNTQUEUE_jobQueueList
<h2>jobQueueList</h2>

<p>Set this property with @ref AB_AccountQueue_SetJobQueueList(), get it with @ref AB_AccountQueue_GetJobQueueList().</p>

*/

/* needed system headers */
#include <gwenhywfar/types.h>
#include <gwenhywfar/list1.h>
#include <gwenhywfar/inherit.h>

/* pre-headers */
#include <aqbanking/banking.h>
#include <aqbanking/ab_jobqueue.h>

typedef struct AB_ACCOUNTQUEUE AB_ACCOUNTQUEUE;
GWEN_LIST_FUNCTION_LIB_DEFS(AB_ACCOUNTQUEUE, AB_AccountQueue, AQBANKING_API)
GWEN_INHERIT_FUNCTION_LIB_DEFS(AB_ACCOUNTQUEUE, AQBANKING_API)



/* post-headers */
#include <aqbanking/ab_accountqueuefns.h>


/** Constructor. */
AQBANKING_API AB_ACCOUNTQUEUE *AB_AccountQueue_new(void);

/** Destructor. */
AQBANKING_API void AB_AccountQueue_free(AB_ACCOUNTQUEUE *p_struct);

AQBANKING_API void AB_AccountQueue_Attach(AB_ACCOUNTQUEUE *p_struct);

AQBANKING_API AB_ACCOUNTQUEUE *AB_AccountQueue_dup(const AB_ACCOUNTQUEUE *p_struct);

/** Getter.
 * Use this function to get the member "account" (see @ref AB_ACCOUNTQUEUE_account)
*/
AQBANKING_API AB_ACCOUNT *AB_AccountQueue_GetAccount(const AB_ACCOUNTQUEUE *p_struct);

/** Getter.
 * Use this function to get the member "jobQueueList" (see @ref AB_ACCOUNTQUEUE_jobQueueList)
*/
AQBANKING_API AB_JOBQUEUE_LIST *AB_AccountQueue_GetJobQueueList(const AB_ACCOUNTQUEUE *p_struct);

/** Setter.
 * Use this function to set the member "account" (see @ref AB_ACCOUNTQUEUE_account)
*/
AQBANKING_API void AB_AccountQueue_SetAccount(AB_ACCOUNTQUEUE *p_struct, AB_ACCOUNT *p_src);

/** Setter.
 * Use this function to set the member "jobQueueList" (see @ref AB_ACCOUNTQUEUE_jobQueueList)
*/
AQBANKING_API void AB_AccountQueue_SetJobQueueList(AB_ACCOUNTQUEUE *p_struct, AB_JOBQUEUE_LIST *p_src);

/* list1 functions */
AQBANKING_API AB_ACCOUNTQUEUE_LIST *AB_AccountQueue_List_dup(const AB_ACCOUNTQUEUE_LIST *p_src);

/* end-headers */


#ifdef __cplusplus
}
#endif

#endif