File: tutorials.h

package info (click to toggle)
libaqbanking 5.4.3beta-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 15,244 kB
  • ctags: 6,703
  • sloc: ansic: 119,813; sh: 11,218; xml: 9,839; makefile: 2,357; cpp: 2,233; perl: 278; pascal: 115
file content (62 lines) | stat: -rw-r--r-- 2,017 bytes parent folder | download | duplicates (16)
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


/** @defgroup G_TUTORIAL1 Tutorial 1 (Basic Usage of AqBanking)
 * @ingroup G_TUTORIALS
 * @brief Basic usage of AqBanking
 *
 * This tutorial simply creates an instance of AqBanking, initializes and
 * deinitializes it.
 *
 * You must either choose a frontend to be used with AqBanking or create
 * one yourself by implementing the user interface callbacks of AqBanking.
 *
 * However, for simplicity reasons we use the console frontend CBanking
 * which implements these callbacks for you.
 *
 * There are other frontends, e.g. G2Banking for GTK2/Gnome, QBanking for
 * QT3 or KDE3 or KBanking for KDE3.
 *
 * @include "tutorial1.c"
 */

/** @defgroup G_TUTORIAL2 Tutorial 2 (Extended Usage of AqBanking)
 * @ingroup G_TUTORIALS
 * @brief Extended usage of AqBanking
 *
 * This tutorial shows the list of accounts currently known to AqBanking.
 *
 * It also gives an introduction into the usage of XXX_List2's and list2
 * iterators.
 *
 * You must either choose a frontend to be used with AqBanking or create
 * one yourself by implementing the user interface callbacks of AqBanking.
 *
 * However, for simplicity reasons we use the console frontend CBanking
 * which implements these callbacks for you.
 *
 * There are other frontends, e.g. G2Banking for GTK2/Gnome, QBanking for
 * QT3 or KDE3 or KBanking for KDE3.
 *
 * @include "tutorial2.c"
 */

/** @defgroup G_TUTORIAL3 Tutorial 3 (Working With Jobs)
 * @ingroup G_TUTORIALS
 * @brief Working with jobs
 *
 * This tutorial shows how to use jobs in AqBanking.
 * In this example we retrieve transaction statements for a given account.
 *
 * You must either choose a frontend to be used with AqBanking or create
 * one yourself by implementing the user interface callbacks of AqBanking.
 *
 * However, for simplicity reasons we use the console frontend CBanking
 * which implements these callbacks for you.
 *
 * There are other frontends, e.g. G2Banking for GTK2/Gnome, QBanking for
 * QT3 or KDE3 or KBanking for KDE3.
 *
 * @include "tutorial3.c"
 */