Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
354444d3
Commit
354444d3
authored
10 years ago
by
Axel Naumann
Browse files
Options
Downloads
Patches
Plain Diff
Replace __MAKECINT__ by __MAKECLING__.
parent
efa300f4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
documentation/users-guide/AddingaClass.md
+13
-13
13 additions, 13 deletions
documentation/users-guide/AddingaClass.md
documentation/users-guide/Cling.md
+1
-1
1 addition, 1 deletion
documentation/users-guide/Cling.md
with
14 additions
and
14 deletions
documentation/users-guide/AddingaClass.md
+
13
−
13
View file @
354444d3
...
@@ -764,7 +764,7 @@ typedefs seen so far by Cling. Example:
...
@@ -764,7 +764,7 @@ typedefs seen so far by Cling. Example:
```
{.cpp}
```
{.cpp}
// some C++ header definition
// some C++ header definition
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
// turns off dictionary generation for all
// turns off dictionary generation for all
#pragma link off all class;
#pragma link off all class;
#pragma link off all function;
#pragma link off all function;
...
@@ -802,7 +802,7 @@ identical. Example:
...
@@ -802,7 +802,7 @@ identical. Example:
```
{.cpp}
```
{.cpp}
// some C++ header definition
// some C++ header definition
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link off all class;
#pragma link off all class;
#pragma link C++ class A;
#pragma link C++ class A;
#pragma link C++ class B;
#pragma link C++ class B;
...
@@ -825,7 +825,7 @@ Example:
...
@@ -825,7 +825,7 @@ Example:
```
{.cpp}
```
{.cpp}
// some C/C++ header definition
// some C/C++ header definition
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link off all global;
#pragma link off all global;
#pragma link off all typedef;
#pragma link off all typedef;
#pragma link C++ global a;
#pragma link C++ global a;
...
@@ -844,7 +844,7 @@ Example:
...
@@ -844,7 +844,7 @@ Example:
```
{.cpp}
```
{.cpp}
// some C/C++ header definition
// some C/C++ header definition
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link off all global;
#pragma link off all global;
#pragma link off all typedef;
#pragma link off all typedef;
#pragma link C++ global a;
#pragma link C++ global a;
...
@@ -892,7 +892,7 @@ class A {
...
@@ -892,7 +892,7 @@ class A {
The pragma statements are:
The pragma statements are:
```
{.cpp}
```
{.cpp}
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link off all functions;
#pragma link off all functions;
#pragma link C++ function f;
#pragma link C++ function f;
#pragma link C++ function g(int,double);
#pragma link C++ function g(int,double);
...
@@ -923,7 +923,7 @@ template<class T> class A {
...
@@ -923,7 +923,7 @@ template<class T> class A {
And generate dictionary for that:
And generate dictionary for that:
```
{.cpp}
```
{.cpp}
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link C++ class A<int>;
#pragma link C++ class A<int>;
#endif
#endif
```
```
...
@@ -944,7 +944,7 @@ You can generate dictionary for the newly instantiated template member
...
@@ -944,7 +944,7 @@ You can generate dictionary for the newly instantiated template member
function only.
function only.
```
{.cpp}
```
{.cpp}
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link off defined_in A.h;
#pragma link off defined_in A.h;
#pragma link C++ function A<int>::f(B&);
#pragma link C++ function A<int>::f(B&);
#endif
#endif
...
@@ -960,7 +960,7 @@ functions in all classes.
...
@@ -960,7 +960,7 @@ functions in all classes.
Example:
Example:
```
{.cpp}
```
{.cpp}
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link off all methods;
#pragma link off all methods;
#endif
#endif
```
```
...
@@ -977,7 +977,7 @@ At this moment, there should be no needs to use those statements.
...
@@ -977,7 +977,7 @@ At this moment, there should be no needs to use those statements.
Example:
Example:
```
{.cpp}
```
{.cpp}
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link off all_function A;
#pragma link off all_function A;
#pragma link off all_datamember A;
#pragma link off all_datamember A;
#endif
#endif
...
@@ -1001,7 +1001,7 @@ Example:
...
@@ -1001,7 +1001,7 @@ Example:
// file2.h
// file2.h
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link off all classes;
#pragma link off all classes;
#pragma link off all functions;
#pragma link off all functions;
#pragma link off all globals;
#pragma link off all globals;
...
@@ -1041,7 +1041,7 @@ namespace ns {
...
@@ -1041,7 +1041,7 @@ namespace ns {
The pragma statements are:
The pragma statements are:
```
{.cpp}
```
{.cpp}
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link C++ defined_in ns;
#pragma link C++ defined_in ns;
#pragma link C++ nestedclass;
#pragma link C++ nestedclass;
#endif
#endif
...
@@ -1077,7 +1077,7 @@ explicitly in the ROOT `LinkDef.h` file the next statement:
...
@@ -1077,7 +1077,7 @@ explicitly in the ROOT `LinkDef.h` file the next statement:
From 5.15.57, you can omit them. Example:
From 5.15.57, you can omit them. Example:
```
{.cpp}
```
{.cpp}
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link default off;
#pragma link default off;
#endif
#endif
...
@@ -1091,7 +1091,7 @@ class B {
...
@@ -1091,7 +1091,7 @@ class B {
double e;
double e;
};
};
#ifdef __MAKECIN
T
__
#ifdef __MAKEC
L
IN
G
__
#pragma link C++ class A; // only class A is linked, not B
#pragma link C++ class A; // only class A is linked, not B
#endif
#endif
```
```
...
...
This diff is collapsed.
Click to expand it.
documentation/users-guide/Cling.md
+
1
−
1
View file @
354444d3
...
@@ -579,7 +579,7 @@ the Cling limitations, you can use the C preprocessor symbols defined
...
@@ -579,7 +579,7 @@ the Cling limitations, you can use the C preprocessor symbols defined
for Cling and
`rootcling`
.
for Cling and
`rootcling`
.
The preprocessor symbol
`__CLING__`
is defined for both ROOT and
The preprocessor symbol
`__CLING__`
is defined for both ROOT and
`rootcling`
. The symbol
`__MAKECLING__`
(and
`__MAKECIN
T
__`
for backward
`rootcling`
. The symbol
`__MAKECLING__`
(and
`__MAKEC
L
IN
G
__`
for backward
compatibility) is only defined in
`rootcling`
.
compatibility) is only defined in
`rootcling`
.
Use
`!defined(__CLING__) || defined(__MAKECLING__)`
to bracket code that
Use
`!defined(__CLING__) || defined(__MAKECLING__)`
to bracket code that
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment