Following examples will help you start using girdap. Examples below should be considered as the driving code that use girdap library. You can create your own main.cpp
or modify one of main_xxx.cpp
files which can be found in the girdap_rootdir/src
directory.
Any code using girdap should include girdap header file placed in girdap_rootdir
before the main()
function;
1
2
3
4
5
6
7
8
9
10
11
#include <girdap_rootdir/grdap>
#include <stdio>
int main(int argc, char *argv[]) {
// examples should be placed here
// --> begin here
// --> end here
exit(0);
}