File: DSO.3cc

package info (click to toggle)
libcommoncpp2 1.0.13-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,740 kB
  • ctags: 2,860
  • sloc: cpp: 18,857; sh: 8,451; ansic: 1,546; makefile: 299; xml: 5
file content (90 lines) | stat: -rw-r--r-- 2,020 bytes parent folder | download
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
.TH "DSO" 3 "19 Jul 2003" "CommonC++" \" -*- nroff -*-
.ad l
.nh
.SH NAME
DSO \- The DSO dynamic loader class is used to load object files. Dynamic class file loader. 
.SH SYNOPSIS
.br
.PP
\fC#include <file.h>\fP
.PP
Inherited by \fBPluginGroup\fP.
.PP
.SS "Public Methods"

.in +1c
.ti -1c
.RI "\fBDSO\fP (const char *filename)"
.br
.RI "\fIConstruct and load a DSO object file.\fP"
.ti -1c
.RI "\fBDSO\fP (const char *filename, bool resolve)"
.br
.ti -1c
.RI "char * \fBgetError\fP (void)"
.br
.RI "\fIRetrieve error indicator associated with DSO failure.\fP"
.ti -1c
.RI "void * \fBoperator[]\fP (const char *)"
.br
.RI "\fILookup a symbol in the loaded file.\fP"
.ti -1c
.RI "\fBCCXX_MEMBER_EXPORT\fP (bool) isValid(void)"
.br
.RI "\fISee if DSO object is valid.\fP"
.in -1c
.SS "Static Public Methods"

.in +1c
.ti -1c
.RI "void \fBdynunload\fP (void)"
.br
.in -1c
.SH "DETAILED DESCRIPTION"
.PP 
The DSO dynamic loader class is used to load object files. Dynamic class file loader.
.PP
On elf based systems this is typically done with dlopen. A dummy stub class is generated for non-dl capable systems.
.PP
\fBAuthor: \fP
.in +1c
David Sugar <dyfet@ostel.com> 
.PP
.SH "CONSTRUCTOR & DESTRUCTOR DOCUMENTATION"
.PP 
.SS "DSO::DSO (const char * filename)\fC [inline]\fP"
.PP
Construct and load a DSO object file.
.PP
\fBParameters: \fP
.in +1c
.TP
\fB\fIfilename\fP\fP
pathname of object file to load. 
.SS "DSO::DSO (const char * filename, bool resolve)\fC [inline]\fP"
.PP
.SH "MEMBER FUNCTION DOCUMENTATION"
.PP 
.SS "DSO::CCXX_MEMBER_EXPORT (bool)"
.PP
See if DSO object is valid.
.PP
\fBReturns: \fP
.in +1c
true if valid. 
.SS "void DSO::dynunload (void)\fC [inline, static]\fP"
.PP
.SS "char* DSO::getError (void)"
.PP
Retrieve error indicator associated with DSO failure.
.PP
This is often used in catch handlers. 
.SS "void* DSO::operator[] (const char *)\fC [inline]\fP"
.PP
Lookup a symbol in the loaded file.
.PP


.SH "AUTHOR"
.PP 
Generated automatically by Doxygen for CommonC++ from the source code.