This file is indexed.

/usr/include/aqbanking5/aqbanking/dlg_usertype_page_be.h is in libaqbanking-dev 5.6.12-1+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
/***************************************************************************
 begin       : Fri Jul 30 2010
 copyright   : (C) 2010 by Martin Preuss
 email       : martin@aqbanking.de

 ***************************************************************************
 * This file is part of the project "AqBanking".                           *
 * Please see toplevel file COPYING of that project for license details.   *
 ***************************************************************************/

#ifndef AB_DLG_USERTYPE_PAGE_BE_H
#define AB_DLG_USERTYPE_PAGE_BE_H


#include <aqbanking/banking.h>

#include <gwenhywfar/dialog.h>


#ifdef __cplusplus
extern "C" {
#endif


/**
 * This is the base class for a user setup type page.
 * It is the page shown after the user selected a backend for which a new user is to
 * be created. This page will then allow the user to choose the type of user setup.
 * For HBCI there are many options (like PinTan, chipcard, keyfile etc). For others
 * there might be only one option.
 */
AQBANKING_API GWEN_DIALOG *AB_UserTypePageDialog_new(AB_BANKING *ab, const char *dname);

AQBANKING_API AB_BANKING *AB_UserTypePageDialog_GetBanking(const GWEN_DIALOG *dlg);

AQBANKING_API int AB_UserTypePageDialog_GetSelectedType(const GWEN_DIALOG *dlg);
AQBANKING_API void AB_UserTypePageDialog_SetSelectedType(GWEN_DIALOG *dlg, int t);


#ifdef __cplusplus
}
#endif



#endif