#include <dlfcn.h>
#include <iostream>
#include "MdcData/MdcHit.h"
Go to the source code of this file.
◆ main()
Definition at line 6 of file Reconstruction/MdcPatRec/MdcData/test/test.cxx.
6 {
7 using std::cerr;
8 using std::cout;
9
10 cout << "C++ dlopen demo\n\n";
11
12
13 cout << "Opening MdcData.so...\n";
14 void* handle = dlopen( "../rh73_gcc32/libMdcData.so", RTLD_LAZY );
15
16 if ( !handle )
17 {
18 cerr << "Cannot open library: " << dlerror() << '\n';
19 return 1;
20 }
21
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40 cout << "Closing library...\n";
41 dlclose( handle );
42}